/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 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;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
    z-index: 1000;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #666;
}

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

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

.cookie-btn.accept {
    background: #3B82F6;
    color: white;
}

.cookie-btn.accept:hover {
    background: #2563EB;
}

.cookie-btn.decline {
    background: #f3f4f6;
    color: #374151;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3B82F6;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-list a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #3B82F6;
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.mobile-nav-list {
    list-style: none;
    padding: 2rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    background: #3B82F6;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #2563EB;
    transform: translateY(-0.2rem);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 8rem 0;
    text-align: center;
}

.about h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.8rem;
    color: #64748b;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: #f8fafc;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

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

.member-image {
    width: 12rem;
    height: 12rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

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

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

.testimonials h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6rem;
}

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

.testimonial {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    max-width: 35rem;
    flex: 1;
    min-width: 30rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-info h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.4rem;
}

.testimonial p {
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
}

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

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

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

.faq-item {
    background: #fff;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 2.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3B82F6;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 2.5rem 2.5rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
background: #EFF6FF;
    color: black;
}

.contact-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-btn {
    background: #fff;
    color: #3B82F6;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #f8fafc;
    transform: translateY(-0.2rem);
}

/* Success Page */
.success-section {
    padding: 12rem 0 8rem;
    text-align: center;
}

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

.success-icon {
    font-size: 6rem;
    margin-bottom: 3rem;
}

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

.success-content p {
    font-size: 1.8rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.secondary-btn {
    background: transparent;
    color: #3B82F6;
    padding: 1.5rem 3rem;
    border: 2px solid #3B82F6;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-0.2rem);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #3B82F6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-0.2rem);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Header Mobile */
    .nav {
        display: none;
    }

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

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.6rem);
    }

    /* Hero Mobile */
    .hero {
        padding: 10rem 0 6rem;
    }

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

    .hero-text h1 {
        font-size: 3.2rem;
    }

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

    /* Sections Mobile */
    .about,
    .team,
    .testimonials,
    .faq {
        padding: 6rem 0;
    }

    .about h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2.8rem;
    }

    .about p {
        font-size: 1.6rem;
    }

    /* Team Mobile */
    .team-grid {
        gap: 3rem;
    }

    .team-member {
        max-width: 100%;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 100%;
        min-width: auto;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 1.6rem;
        padding: 2rem;
    }

    .faq-answer {
        padding: 0 2rem 2rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 6rem 0;
    }

    .contact h2 {
        font-size: 2.8rem;
    }

    .contact p {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    /* Success Mobile */
    .success-section {
        padding: 10rem 0 6rem;
    }

    .success-content h1 {
        font-size: 2.8rem;
    }

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

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn,
    .secondary-btn {
        width: 100%;
        max-width: 30rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-section {
        min-width: auto;
    }

    /* Cookie Popup Mobile */
    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .about h2,
    .testimonials h2,
    .faq h2,
    .contact h2,
    .success-content h1 {
        font-size: 2.4rem;
    }

    .contact-form,
    .testimonial {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}