body {
    font-family: Arial, sans-serif;
}
.bg-purple {
    background-color: #6a0dad;
    color: #fff;
}
.btn-purple {
    background-color: #6a0dad;
    color: #fff;
    border: none;
    transition: 0.3s;
}
.btn-purple:hover {
    background-color: #5a0cae;
}
.hero {
    background: linear-gradient(to right, #6a0dad, #ffcc00);
    color: white;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.accordion-button {
    background-color: #ffcc00;
    color: #6a0dad;
}
.carousel-item {
    padding: 20px;
    text-align: center;
}
.teacher-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.form-container {
    max-width: 500px;
    margin: auto;
    background: #f3e5f5;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #6a0dad;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.form-label {
    font-weight: bold;
    color: #6a0dad;
}
.form-control {
    border-radius: 8px;
    border: 1px solid #6a0dad;
}
.alert-success {
    display: none;
    margin-top: 15px;
    border-radius: 8px;
    padding: 15px;
}

.contact-info i {
    font-size: 1.5rem;
    color: #6a0dad;
    margin-right: 10px;
}
.footer nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}
.footer nav a:hover {
    text-decoration: underline;
}
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #6a0dad;
    color: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 600px;
    z-index: 1000;
}
.cookie-banner button {
    margin-left: 10px;
}
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 400px;
    width: 90%;
}
.cookie-modal-content {
    text-align: center;
}
.cookie-modal h3 {
    color: #6a0dad;
}
.cookie-buttons button {
    margin-top: 10px;
}