.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.about-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.about-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

.about-hero h1 {
    margin: 0 0 16px;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-section {
    margin-bottom: 36px;
}

.about-section h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
}

.about-section p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

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

.about-list {
    margin: 0;
    padding-left: 20px;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.about-list li {
    margin-bottom: 8px;
}

.about-cta {
    border-top: 1px solid #e8e8e8;
    padding-top: 28px;
}

.about-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 16px;
}

.about-btn {
    border-radius: 15px;
    padding: 14px 28px;
    text-decoration: none;
    display: inline-block;
}

.about-link-btn {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
}

.about-image-wrap {
    margin: 0 0 24px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

.about-image-wrap figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
    text-align: center;
    font-style: italic;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-stat {
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    background: #fafafa;
}

.about-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about-page {
        padding: 32px 20px 60px;
    }

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

    .about-aside {
        order: -1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}
