/* ============================================
   MODERN ABOUT PAGE STYLES
   ============================================ */

.about-header .header-inner.hi-about-us {
    position: relative;
    overflow: hidden;
}

.about-hero {
    background: linear-gradient(135deg, #071426 0%, #102a4a 40%, #153b63 100%);
    color: #ffffff;
}

.about-page {
    background: #f5f7fb;
}

.about-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
}

/* Intro section */
.about-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
}

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

.about-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.about-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #102a4a;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6d788b;
}

@media (min-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Body section */
.about-body {
    background: #ffffff;
}

.about-body-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-body-text ul {
    padding-left: 20px;
}

.about-body-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-body-panel {
    background: #0f2138;
    color: #ffffff;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.about-body-panel h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
}

.about-body-panel p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.about-location-card {
    background: rgba(8, 25, 46, 0.95);
    border-radius: 14px;
    padding: 14px 12px;
}

.about-location-card h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}

.about-location-card p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Values section */
.about-values {
    background: #f5f7fb;
}

.about-value-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.about-value-card h4 {
    font-size: 18px;
    margin-top: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-value-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-value-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 166, 245, 0.1);
    color: #0d3a5c;
    font-size: 18px;
}

