.hero {
    margin-top: 70px;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fffe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: #35D1D1;
}

.hero p {
    font-size: 20px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.7;
}


/* Mission Section */

.mission {
    padding: 100px 5%;
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.mission-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-visual {
    /* background: linear-gradient(135deg, rgba(53, 209, 209, 0.1) 0%, rgba(53, 209, 209, 0.05) 100%); */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    height: 400px;
    /*border: 2px solid rgba(53, 209, 209, 0.2);*/
}


/* Values Section */

.values {
    padding: 100px 5%;
    background: #f7fffe;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(53, 209, 209, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 209, 209, 0.15);
    border-color: #35D1D1;
}

.value-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
}


/* Stats Section */

.stats {
    padding: 100px 5%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item h3 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.95;
}


/* Team Section */

.team {
    padding: 100px 5%;
    background: white;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(53, 209, 209, 0.3);
}

.team-member h3 {
    font-size: 22px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 16px;
    color: #35D1D1;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}


/* Story Section */

.story {
    padding: 100px 5%;
    background: #f7fffe;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #35D1D1 0%, #2bb8b8 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 1;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #35D1D1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(53, 209, 209, 0.2);
}

.timeline-year {
    text-align: right;
    font-size: 42px;
    font-weight: 700;
    color: #35D1D1;
}

.timeline-content h3 {
    font-size: 24px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
}


/* CTA Section */

.cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-white {
    background: white;
    color: #35D1D1;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #02d3db
}

.about-section h2 {
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #333
}

.about-section p,
.about-section ul {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.about-section ul {
    list-style: disc inside
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-section h2 {
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #333
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-col {
    flex: 1;
    min-width: 280px;
}

.about-image {
    width: 100%;
    border-radius: 10px;
}

.faq {
                padding: 100px 5%;
                background: white;
            }
            
            .faq-container {
                max-width: 900px;
                margin: 60px auto 0;
            }
            
            .faq-item {
                background: white;
                border-radius: 12px;
                margin-bottom: 16px;
                border: 1px solid rgba(53, 209, 209, 0.1);
                overflow: hidden;
                transition: all 0.3s;
            }
            
            .faq-item:hover {
                box-shadow: 0 4px 20px rgba(53, 209, 209, 0.1);
            }
            
            .faq-question {
                padding: 24px 28px;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-weight: 600;
                font-size: 17px;
                color: #1a202c;
                user-select: none;
            }
            
            .faq-question:hover {
                color: #35D1D1;
            }
            
            .faq-toggle {
                font-size: 24px;
                color: #35D1D1;
                transition: transform 0.3s;
            }
            
            .faq-item.active .faq-toggle {
                transform: rotate(45deg);
            }
            
            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease-out;
                padding: 0 28px;
            }
            
            .faq-item.active .faq-answer {
                max-height: 300px;
                padding: 0 28px 24px;
            }
            
            .faq-answer p {
                font-size: 15px;
                color: #4a5568;
                line-height: 1.7;
            }

/* Responsive */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .about-row {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .about-heading {
        font-size: 1.5rem;
    }
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mission-content h2,
    .section-header h2,
    .cta h2 {
        font-size: 32px;
    }
    .mission-visual {
        height: 300px;
        font-size: 80px;
        padding: 0px;
    }
    .mission{
        padding: 0 5%;
    }
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stat-item h3 {
        font-size: 42px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 60px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
    }
    .timeline-item:nth-child(even) .timeline-year {
        order: 1;
        text-align: left;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-year {
        text-align: left;
        font-size: 32px;
    }
}