﻿.about-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

    .about-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .about-hero p {
        font-size: 1.15rem;
        opacity: 0.95;
        max-width: 760px;
        margin: 0 auto;
    }

.section {
    padding: 70px 0;
}

    .section.alt {
        background: #f8f9fa;
    }

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

    .value-card:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,0.08);
        transform: translateY(-3px);
        border-color: #fa8c16;
    }

.value-icon {
    font-size: 32px;
    color: #fa8c16;
    margin-bottom: 12px;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.value-desc {
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fa8c16;
}

.stat-label {
    color: #666;
    margin-top: 6px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}

    .team-card:hover {
        border-color: #fa8c16;
        transform: translateY(-3px);
    }

.avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fa8c16;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    margin: 0 auto 12px auto;
}

.team-name {
    font-weight: 700;
    color: #333;
}

.team-role {
    color: #666;
    font-size: .95rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.office-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
}

.office-title {
    font-weight: 700;
    color: #333;
}

.office-line {
    color: #666;
    margin-top: 6px;
}

.cta {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: #fff;
    text-align: center;
    padding: 70px 0;
    border-radius: 12px;
}

    .cta h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cta p {
        opacity: .95;
        margin-bottom: 18px;
    }

    .cta .btn {
        background: #fff;
        color: #fa8c16;
        border: none;
        border-radius: 10px;
        padding: 12px 22px;
        font-weight: 700;
        cursor: pointer;
    }

        .cta .btn:hover {
            background: #f8f9fa;
        }

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
}
