/* About Hero Section */
.about-hero {
    padding: 100px 0 60px;
    background: #fafbfc;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #111827;
}

.mission-text p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #f3f4f6;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.stat p {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #fafbfc;
}

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

.team-member {
    text-align: center;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    background: white;
    border: 1px solid #f3f4f6;
    transition: all 0.25s ease;
    min-width: 220px;
}

.team-member:hover {
    border-color: #d1fae5;
}

.member-avatar {
    margin-bottom: 1rem;
}

.member-avatar img {
    width: 48px;
    height: auto;
    border-radius: 50%;
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.member-role {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member p:last-child {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: all 0.25s ease;
}

.value-card:hover {
    border-color: #d1fae5;
    background: #f0fdf4;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon img {
    width: 44px;
    height: auto;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.value-card p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fafbfc;
    text-align: center;
}

.contact-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-content > p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    border: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-method:hover {
    border-color: #d1fae5;
}

.contact-icon img {
    width: 24px;
}

.contact-method h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.1rem;
}

.contact-method p {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-method .copied-tip {
    color: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .mission-stats {
        gap: 2rem;
    }

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

    .team-member {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 40px;
    }

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

    .mission-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-method {
        width: 100%;
        max-width: 320px;
    }
}
