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

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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 2rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

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

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Aldrich', sans-serif;
    font-size: 1.4rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #4a90e2;
    color: white;
}

.cookie-btn.accept:hover {
    background: #357abd;
}

.cookie-btn.decline {
    background: #666;
    color: white;
}

.cookie-btn.decline:hover {
    background: #555;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand a {
    font-size: 2.4rem;
    font-weight: bold;
    color: #4a90e2;
    text-decoration: none;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #EFF6FF 0%, #E0E7FF 100%), rgba(0, 0, 0, 0.00);
    color: black;
    padding: 12rem 0 8rem;
    margin-top: 7rem;
    text-align: center;
}

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

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

.btn-primary {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Aldrich', sans-serif;
}

.btn-primary:hover {
    background: #357abd;
}

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

.mission h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.mission > .container > p {
    text-align: center;
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 6rem;
    color: #666;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.team-member {
    text-align: center;
    max-width: 30rem;
}

.team-photo {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    background: #ddd;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-member p {
    color: #666;
    font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 6rem;
    color: #333;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.testimonial-author strong {
    display: block;
    font-size: 1.6rem;
    color: #333;
}

.testimonial-author span {
    color: #666;
    font-size: 1.4rem;
}

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

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 6rem;
    color: #333;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
background: linear-gradient(135deg, #EFF6FF 0%, #E0E7FF 100%), rgba(0, 0, 0, 0.00);
    color: black;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact > .container > p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input {
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Aldrich', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 0.3rem rgba(74, 144, 226, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a90e2;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #34495e;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #4a90e2;
}

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

.footer-bottom p {
    color: #bdc3c7;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 3rem;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-section {
        flex: 1;
    }

    /* Success page tablet styles */
    .success-actions {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }

    .step {
        flex: 1;
        min-width: 25rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 5.6rem;
    }

    .team-grid {
        justify-content: space-between;
    }

    .team-member {
        flex: 1;
        max-width: 32%;
    }

    .testimonials-grid {
        gap: 4rem;
    }

    .testimonial {
        max-width: calc(33.333% - 2.5rem);
    }

    /* Success page desktop styles */
    .success-content h1 {
        font-size: 4.8rem;
    }

    .steps-grid {
        justify-content: space-between;
    }

    .step {
        max-width: calc(33.333% - 2rem);
    }
}

/* Success Page Styles */
.success-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 7rem;
}

.success-content {
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    font-size: 8rem;
    color: #4CAF50;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
}

.success-content h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    font-family: 'Aldrich', sans-serif;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.whats-next {
    padding: 8rem 0;
    background: #f8f9fa;
}

.whats-next h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 6rem;
    color: #333;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 90rem;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 6rem;
    height: 6rem;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.step h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 6.4rem;
    }

    .container {
        padding: 0 4rem;
    }
}

/* Mobile Navigation Toggle */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.6rem, 0.6rem);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.6rem, -0.6rem);
    }
}