.inner-banner {
        background: url('../img/slider/1920-600/banner7.jpg') no-repeat center center;
        background-size: cover; /* fill area, crop if needed */
        height: 400px; /* reduced height */
        position: relative;
        color: #fff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .inner-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .inner-banner .container {
        position: relative;
        z-index: 2;
    }

    .inner-banner h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .breadcrumb {
        background: none;
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: #fff;
        padding: 0 8px;
    }

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb .active {
        color: #ccc;
    }

    @media (max-width: 576px) {
        .inner-banner {
            height: 250px;
        }

        .inner-banner h1 {
            font-size: 24px;
        }
    }