/* Global Styles */
:root {
    --primary-color: #1a2348;
    --secondary-color: #a195e6;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #8a7ed0;
    color: var(--white);
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#accept-cookies {
    background-color: var(--secondary-color);
    color: var(--white);
}

#decline-cookies {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.navigation ul {
    display: flex;
    gap: 30px;
}

.navigation a {
    color: var(--white);
    font-weight: 500;
}

.navigation a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.hero p {
    max-width: 800px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Learning Section */
.learning {
    background-color: var(--white);
}

.learning-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.learning-image {
    flex: 1;
}

.learning-text {
    flex: 1;
}

.learning-text h2 {
    color: var(--primary-color);
}

/* Focus Points Section */
.focus-points {
    background-color: var(--light-gray);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.focus-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--white);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-icon {
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-icon img {
    width: 20px;
    height: 20px;
}

/* Programs Section */
.programs {
    background-color: var(--white);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-card h3, .program-card p {
    padding: 0 20px;
}

.program-card h3 {
    margin-top: 20px;
}

.program-card p {
    padding-bottom: 20px;
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: gold;
    font-size: 1.2rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-text);
}

/* Philosophy Section */
.philosophy {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.philosophy .container {
    max-width: 800px;
}

.philosophy p {
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid #e1e1e1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
}

.form-group button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .learning-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation ul {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .navigation li {
        margin-bottom: 10px;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .cookie-content {
        text-align: center;
    }

    .main-section h1 {
        word-break: break-all;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.thank-section {
    text-align: center;
    padding: 200px 0;
}