.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--mibooz-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.page-header-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
}

.page-header__inner {
    text-align: center;
    width: 100%;
}

.thm-breadcrumb {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thm-breadcrumb li {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline;
}

.thm-breadcrumb li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.thm-breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header__title {
    color: #fff;
    font-size: 3rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* Section Title */
.section-title__tagline {
    color: #0056a3;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.1;
}

/* Main Content Layout */
.best-agency .container {
    padding: 2rem 2rem 2rem 0;
}

.welcome-three__left {
    padding-right: 2rem;
}

.welcome-three__left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 3px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-top: 1rem;
    transition: transform 0.2s;
}

.welcome-three__left img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 991px) {
    .welcome-three__left {
        padding-right: 0;
    }
    .best-agency .container {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .best-agency .row {
        flex-direction: column;
    }
    .welcome-three__left img {
        max-width: 100%;
    }
    .section-title__title {
        font-size: 2rem;
    }
}
