#about-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

#about-hero {
    padding: 48px 0 40px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 48px;
}

#about-hero h1 {
    font-size: 2rem;
    color: #1D3557;
    margin: 0 0 12px;
    line-height: 1.2;
}

#about-hero p {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 600px;
}

#about-byline {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

#about-byline strong {
    color: #1D3557;
    font-weight: 700;
}

#about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 32px;
}

.about-stat {
    background: #f8fafc;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.about-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1D3557;
    line-height: 1.1;
}

.about-stat-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.about-section {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: 1.15rem;
    color: #1D3557;
    margin: 0 0 12px;
    font-weight: 700;
}

.about-section p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #334155;
    font-weight: 400;
    margin: 0 0 4px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    color: #1D3557;
    font-weight: 700;
}

.about-section a {
    color: #1D3557;
    font-weight: 600;
    text-underline-offset: 2px;
}

.about-section em {
    font-style: italic;
}

.about-highlight {
    background: #f0f4f8;
    border: 1px solid #dde6f0;
    border-radius: 10px;
    padding: 28px 32px;
    border-bottom: 1px solid #dde6f0 !important;
}

.about-cta {
    background: #1D3557;
    border-radius: 10px;
    padding: 32px;
    border-bottom: none !important;
}

.about-cta h2 {
    color: #fff;
}

.about-cta p {
    color: #a8c0d6;
}

.about-cta a {
    color: #fff;
    font-weight: 700;
}

#about-author-bio {
    border-top: 1px solid #e2e8f0;
    padding: 36px 0 0;
    margin-top: 44px;
}

#about-author-bio-name {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 16px;
}

#about-author-bio p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #334155;
    font-weight: 400;
    margin: 0 0 4px;
}

#about-author-bio p:last-child {
    margin-bottom: 0;
}

#about-author-bio a {
    color: #1D3557;
    font-weight: 600;
    text-underline-offset: 2px;
}

@media (max-width: 600px) {
    #about-hero h1 {
        font-size: 1.5rem;
    }

    #about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlight {
        padding: 20px;
    }

    .about-cta {
        padding: 24px 20px;
    }
}
