.about-page {
    padding: 60px 0;
    min-height: 70vh;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 15px;
    color: rgba(7, 19, 38, 0.7);
    max-width: 560px;
    margin: 0 auto;
}

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

.about-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 22px;
    border: 1px solid rgba(11, 29, 66, 0.08);
    box-shadow: 0 10px 30px rgba(11, 29, 66, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 29, 66, 0.12);
}

.about-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.about-text {
    font-size: 14px;
    color: rgba(7, 19, 38, 0.75);
    line-height: 1.6;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
