/* Reset and Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background-color: #2c5aa0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a8c8f0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5aa0;
    color: #fff;
    padding: 2rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 30rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8bc34a;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #7cb342;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn.decline:hover {
    background-color: #fff;
    color: #2c5aa0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: #fff;
    padding: 12rem 0 8rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #8bc34a;
    color: #fff;
    padding: 1.8rem 4rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.1rem;
}

.cta-button:hover {
    background-color: #7cb342;
    transform: translateY(-0.2rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Business Image Section */
.business-image {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.business-img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Progress Section */
.progress {
    padding: 8rem 0;
    background-color: #fff;
}

.progress h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
    text-align: center;
}

.progress p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    margin-top: 6rem;
}

.service-item {
    background-color: #2c5aa0;
    color: #fff;
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
}

.service-item h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-item ul {
    list-style: none;
    text-align: left;
    max-width: 30rem;
    margin: 0 auto;
}

.service-item li {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8bc34a;
    font-weight: bold;
}

/* Mission Section */
.mission {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 30rem;
}

.mission-img {
    width: 100%;
    height: 50rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-text {
    flex: 1;
    min-width: 40rem;
}

.mission-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c5aa0;
}

.mission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.feature {
    flex: 1;
    min-width: 25rem;
    text-align: center;
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.feature p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

/* Programs Section */
.programs {
    padding: 8rem 0;
    background-color: #fff;
}

.programs h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
    text-align: center;
}

.programs > p {
    font-size: 1.8rem;
    margin-bottom: 6rem;
    text-align: center;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.program-item {
    flex: 1;
    min-width: 25rem;
    max-width: 30rem;
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-icon {
    margin-bottom: 2rem;
}

.program-icon img {
    width: 6rem;
    height: 6rem;
}

.program-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.program-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.faq h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #2c5aa0;
    text-align: center;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    flex: 1;
}

.faq-toggle {
    font-size: 2.4rem;
    font-weight: 300;
    color: #8bc34a;
    transition: transform 0.3s ease;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f8ff;
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 3rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 3rem 2.5rem;
    max-height: 20rem;
}

.faq-answer p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
    background-color: #fff;
}

.reviews h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #2c5aa0;
    text-align: center;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.review-item {
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 2rem;
}

.review-item p {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.reviewer-photo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    text-align: left;
}

.reviewer-info strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
}

.reviewer-info span {
    font-size: 1.4rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #2c5aa0;
    color: #fff;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-details p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-form {
    flex: 1;
    min-width: 40rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
}

.submit-button {
    background-color: #8bc34a;
    color: #fff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #7cb342;
    transform: translateY(-0.2rem);
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8bc34a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Success Page */
.success-page {
    padding: 15rem 0 10rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .mission-content {
        flex-direction: column;
        gap: 4rem;
    }

    .mission-features {
        flex-direction: column;
        gap: 2rem;
    }

    .feature {
        min-width: auto;
    }

    .programs-grid {
        flex-direction: column;
        align-items: center;
    }

    .program-item {
        max-width: none;
        width: 100%;
    }

    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }

    .review-item {
        max-width: none;
        width: 100%;
    }

    .contact-content {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.4rem;
    }

    .business-img {
        height: 25rem;
    }

    .mission-img {
        height: 30rem;
    }
}