/* About Hero Section */
.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #fffbeb 0%, #fefce8 100%);
    text-align: center;
}

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

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #78716c;
    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: #1c1917;
}

.mission-text p {
    font-size: 0.95rem;
    color: #78716c;
    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 #f5f5f4;
}

.stat {
    text-align: center;
}

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

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

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

.team-list {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: white;
    border: 1px solid #f5f5f4;
    transition: all 0.25s ease;
}

.team-item:hover {
    border-color: #fde68a;
    box-shadow: 0 4px 16px rgba(146, 64, 14, 0.06);
}

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

.team-item-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #1c1917;
}

.team-item-info .member-role {
    color: #92400e;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.team-item-info p:last-child {
    color: #a8a29e;
    font-size: 0.85rem;
    line-height: 1.5;
}

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

.values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 2.5rem auto 0;
}

.value-card-lg {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f5f5f4;
    transition: all 0.25s ease;
}

.value-card-lg:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.75rem);
    margin: 0 auto;
}

.value-card-lg:hover {
    border-color: #fde68a;
    background: #fffbeb;
}

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

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

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

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

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

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

.contact-content > p {
    font-size: 0.95rem;
    color: #78716c;
    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 #f5f5f4;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-method:hover {
    border-color: #fde68a;
    box-shadow: 0 4px 16px rgba(146, 64, 14, 0.06);
}

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

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

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

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

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

    .mission-stats {
        gap: 2rem;
    }

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

    .value-card-lg:last-child {
        max-width: 100%;
    }
}

@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;
    }
}
