/*  
.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
 
.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}
 
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.banner-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
}

.banner-date, .banner-category {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
 
.page-hero {
    background: linear-gradient(135deg, #1D6E65 0%, #1C4C4A 100%);
    color: white;
    padding: 36px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    margin: 0;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-date, .page-category {
    color: white;
}
 
@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }
    
    .desktop-banner {
        display: none;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-meta {
        flex-direction: column;
        gap: 10px;
    }
} */
.hero-breadcrumb__inner p,
.hero-breadcrumb__inner h1 {
    color: #fff !important;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-breadcrumb_inner {
    position: absolute;
    z-index: 2;
    color: #fff;
    margin-top: -44%;
    text-align: center;
}

.hero-breadcrumb_inner h1 strong {
    color: #fff;
}

.mobile_image {
    display: none;
}

.desktop_image {
    display: block;
}

@media (max-width: 767px) {
    .mobile_image {
        display: block;
    }

    .desktop_image {
        display: none;
    }
}

.hero-breadcrumb__inner {
    position: absolute;
}

.hero-breadcrumb__inner h2 {
    color: #fff;
}

.about-main .support__navbar-tabs {
    margin: auto;
}