

/* ============================================
   Overview Hero Section
   ============================================ */
.overview-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.overview-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 1, 0.5) 0%, rgba(12, 39, 101, 0.5) 100%);
    z-index: 1;
}

.overview-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.overview-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.overview-hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================
   Overview Section
   ============================================ */
.overview-section {
    padding: 80px 0;
    position: relative;
}

/* Background decoration */


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Overview Table */
.overview-table {
    max-width: 900px;
    margin: 0 auto 80px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.table-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e0e0e0;
    min-height: 60px;
    padding: 2em 0;
}


.table-label {
    background-color: #fff;
    padding: 15px 20px;
    font-size: .8rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    border: 1px solid #000;
    text-align: center;
    justify-content: center;
    letter-spacing: 2px;
}

.table-content {
    padding: 15px 20px;
    font-size: .9rem;
    line-height: 1.6;
    color: #333;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   Branches Section
   ============================================ */
.branches-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/* Branch Items */
.branch-item {
    margin: 0 auto 20px;
    max-width: 900px;

}

.branch-item:last-child {
    margin-bottom: 0;
}

.branch-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.branch-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.branch-address {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.branch-map {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.branch-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thanks_box p {
    font-size: clamp(12px, 2vw, 26px);
    text-align: center;
    line-height: 1.8;
    letter-spacing: 2px;
    font-weight: 600;
}
/* ============================================
   Responsive Design (Tablet)
   ============================================ */
@media (max-width: 1024px) {
    .overview-section::before {
        display: none;
    }

    .table-row {
        grid-template-columns: 120px 1fr;
    }

    .table-label {
        padding: 12px 15px;
        font-size: 12px;
    }

    .table-content {
        padding: 12px 15px;
        font-size: 13px;
    }

    .branch-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .branch-map {
        height: 250px;
    }
}

/* ============================================
   Responsive Design (Smartphone)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .overview-hero {
        height: 200px;
    }

    .overview-hero-title {
        font-size: 28px;
    }

    .overview-hero-subtitle {
        font-size: 12px;
    }

    .overview-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .overview-table {
        margin-bottom: 60px;
    }

    .table-row {
        grid-template-columns: 100px 1fr;
        min-height: 50px;
    }

    .table-label {
        padding: 10px 12px;
        font-size: 11px;
    }

    .table-content {
        padding: 10px 12px;
        font-size: 12px;
    }

    .branches-section {
        padding: 60px 0;
    }

    .branch-item {
        margin-bottom: 60px;
    }

    .branch-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .branch-info {
        gap: 25px;
    }

    .branch-address {
        font-size: 13px;
    }

    .branch-map {
        height: 200px;
    }
    .thanks_box p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .overview-hero {
        height: 150px;
    }

    .overview-hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 26px;
    }

    .table-row {
        grid-template-columns: 80px 1fr;
        min-height: 45px;
    }

    .table-label {
        padding: 8px 10px;
        font-size: 10px;
    }

    .table-content {
        padding: 8px 10px;
        font-size: 11px;
    }

    .branch-title {
        font-size: 18px;
    }

    .branch-address {
        font-size: 12px;
    }

    .branch-map {
        height: 150px;
    }
        .thanks_box p {
        text-align: left;
    }
}
