  .breadcrumb-section {
        position: relative;
        height: 200px;
        /* Fixed height of 200px */
        background-size: cover;
        /* Ensures the background image covers the full section */
        background-position: center;
        /* Centers the image */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .breadcrumb-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        /* Dark overlay on the image */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .breadcrumb-title {
        font-size: 36px;
        /* Adjust the title size */
        color: #fff;
        /* White color for the title text */
        font-weight: bold;
        z-index: 10;
    }
