
/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #00204c;
    background: #ffffff;
    line-height: 1.7;
    
    padding-top: 80px;

}

/* ================= GLOBAL CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= IMAGES ================= */
img {
    max-width: 100%;
    height: auto;
}

/* ================= SECTION ================= */
section {
    padding: 70px 0; /* UNIFIED (was 55px) */
}

/* ================= UNIFORM HERO (MATCH ALL PAGES) ================= */
.about-hero {
    width: 100%;
    min-height: 65vh; /* SAME AS OTHER PAGES */

    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/about.webp') center/cover no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* ================= SECTION TITLES ================= */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00204c;
    text-align: center;
}

.section-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #5a6f8f;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

/* ================= TABLE SECTION ================= */
.charges-section {
    padding: 70px 0;
    background: #ffffff;
}

.charges-section.light-bg {
    background: #f7f9fc;
}

/* ================= TABLE WRAPPER ================= */
.charges-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    margin-top: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ================= TABLE ================= */
.charges-table {
    width: 100%;
    min-width: 900px; /* FIXED RESPONSIVE WIDTH */
    border-collapse: collapse;
    font-size: 14px;
    white-space: nowrap;
}

/* TABLE CELLS */
.charges-table th,
.charges-table td {
    border: 1px solid #ddd;
    padding: 10px 8px;
    text-align: center;
}

/* HEADER */
.charges-table thead th {
    background: #00204c;
    color: #ffffff;
    font-size: 1rem;
}

.charges-table .sub-header th {
    background: #0a3d73;
    color: #ffffff;
}

/* LOCATION COLUMN */
.location {
    text-align: left !important;
    color: #00204c;
}

/* HOVER */
.charges-table tr:hover td {
    background: #b90c14;
    color: #ffffff;
    transition: 0.2s;
}

/* DATA */
.charges-table td {
    font-weight: 400;
    color: #5a6f8f;
    line-height: 1.65;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .charges-table {
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .charges-table {
        font-size: 11px;
    }

    .charges-table th,
    .charges-table td {
        padding: 6px 4px;
    }

    .about-hero {
        min-height: 55vh;
    }
}

@media (max-width: 480px) {
    .charges-table {
        font-size: 10px;
    }

    .charges-table th,
    .charges-table td {
        padding: 4px 2px;
    }
}