/* ── About Company page ─────────────────────────────────────────────── */

/* ── Shared section wrapper ─────────────────────────────────────────── */
.about-section {
    padding: 3.5rem 0;
}

.about-history-section {
    background: #f4f7fa;
}

.about-section-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--navy, #1b2a52);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: .75rem;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--red, #c1272d);
    border-radius: 2px;
}

/* ── Advantages ─────────────────────────────────────────────────────── */
.about-advantage {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.about-advantage-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(27,42,82,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy, #1b2a52);
    font-size: 1.25rem;
}

.about-advantage-title {
    font-weight: 700;
    color: var(--navy, #1b2a52);
    margin-bottom: .25rem;
    font-size: .95rem;
}

.about-advantage-text {
    font-size: .875rem;
    color: #555;
    line-height: 1.55;
}

/* ── History timeline ───────────────────────────────────────────────── */
.about-timeline-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border-top: 4px solid var(--navy, #1b2a52);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.about-timeline-card--current {
    border-top-color: var(--red, #c1272d);
}

.about-timeline-year {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy, #1b2a52);
    margin-bottom: .4rem;
}

.about-timeline-card--current .about-timeline-year {
    color: var(--red, #c1272d);
}

.about-timeline-event {
    font-weight: 700;
    font-size: .9rem;
    color: #222;
    margin-bottom: .5rem;
}

.about-timeline-desc {
    font-size: .82rem;
    color: #666;
    line-height: 1.5;
}

/* ── CTA ────────────────────────────────────────────────────────────── */
.about-cta {
    background: var(--navy-dark, #0f1d3a);
    padding: 4rem 0 1rem;
}

.about-cta-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.about-cta-text {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btn {
    min-width: 200px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-cta-btn {
        min-width: unset;
        width: 100%;
    }
}

