.about-hero {
    background: linear-gradient(135deg,#0d6efd,#071347);
    color: #fff;
    padding: 90px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 30px;
    font-weight: 800;
}

.about-hero p {
    margin-top: 10px;
    color: #e5e7eb;
}

/* SECTION */
.about-section {
    padding: 50px 0;
}

.about-section.light {
    background: #f9fafb;
}

.about-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* GRID */
.about-grid {
    display: grid;
    gap: 24px;
}

.vision-grid {
    display: grid;
    gap: 24px;
}

/* CARDS */
.about-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.about-card strong {
    display: block;
    font-size: 16px;
}

.about-card span {
    font-size: 13px;
    color: #666;
}

/* FEATURES */
.feature-grid {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-box span {
    font-size: 26px;
}

.feature-box strong {
    display: block;
    margin: 10px 0 6px;
}

/* CTA */
.about-cta {
    background: #071347;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.about-cta p {
    margin: 10px 0 20px;
    color: #cbd5e1;
}

/* DESKTOP */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero h1 {
        font-size: 42px;
    }
}
