/* =========================
 PAGE BANNER
========================= */

.page-banner {
    position: relative;
    height: 320px;
    background: url('../img/banner.jpg') center center / cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-overlay h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-overlay p {
    font-size: 14px;
    letter-spacing: 1px;
}

.banner-overlay a {
    color: #fff;
    text-decoration: none;
}

.banner-overlay a:hover {
    text-decoration: underline;
}

/* =========================
 OVERVIEW SECTION
========================= */

.overview-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.overview-tag {
    color: #f50000;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.overview-title {
    font-size: 38px;
    font-weight: 800;
    margin: 10px 0 20px;
    color: #111;
}

.overview-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.overview-points {
    margin-bottom: 35px;
}

.point {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.check {
    min-width: 34px;
    height: 34px;
    background: #fc0202;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* BUTTON */
.overview-btn {
    display: inline-block;
    background: #e67e7e;
    color: #fff;
    padding: 14px 30px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.overview-btn:hover {
    background: #ff0101;
}

/* RIGHT IMAGE */
.overview-image {
    height: 460px;
    overflow: hidden;
    border-radius: 6px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
 RESPONSIVE
========================= */

@media (max-width: 992px) {
    .page-banner {
        height: 240px;
    }

    .banner-overlay h1 {
        font-size: 30px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-image {
        height: 320px;
        margin-top: 30px;
    }

    .overview-title {
        font-size: 30px;
    }
}
