/* About Us page styles */
:root {
    --brand-blue: #1C244B;
}

.about-hero {
    background: linear-gradient(135deg, #1C244B 0%, #10162f 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}

.about-hero h1 {
    font-weight: 800;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.about-wrap {
    padding: 48px 0 64px;
}

.about-card {
    max-width: 960px;
    margin: 0 auto;
}

.about-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-top: 34px;
    margin-bottom: 14px;
}

.about-card h2:first-of-type {
    margin-top: 0;
}

.about-card p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #333;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0 8px;
}

.about-highlight {
    background: #f5f6fa;
    border: 1px solid #e6e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.about-highlight .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-blue);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-highlight .label {
    font-size: 0.95rem;
    color: #555;
}

.about-cta {
    text-align: center;
    margin-top: 44px;
}

.about-cta .btn {
    margin: 6px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.about-cta .btn-brand {
    background: var(--brand-blue);
    color: #fff;
    border: 2px solid var(--brand-blue);
}

.about-cta .btn-brand:hover {
    background: #12183a;
    border-color: #12183a;
}

.about-cta .btn-outline {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.about-cta .btn-outline:hover {
    background: var(--brand-blue);
    color: #fff;
}
