/* 
* Contact Page Breadcrumb Vertical Centering
* Direct approach to position breadcrumb text closer to header
*/

/* Reset and override all previous styles */
.page-banner {
    min-height: 180px !important; /* Maintained original height */
    position: relative !important;
    background: linear-gradient(135deg, #4CAF91, #45a049) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important; /* Reset padding to use flexbox centering */
}

/* Position the content in the middle of the breadcrumb section */
.page-banner .container {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Page title */
.page-banner .page-title {
    color: white !important;
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
    padding-top: 20px !important;
}

/* Breadcrumb styling */
.page-banner .breadcrumb {
    display: inline-flex !important;
    justify-content: center !important;
    margin-top: 5px !important;
}

/* Breadcrumb items */
.page-banner .breadcrumb-item {
    font-size: 14px !important;
}

/* Active breadcrumb item - orange color */
.page-banner .breadcrumb-item.active {
    color: #FF7F50 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-banner {
        height: 240px !important;
    }
    
    .page-banner .page-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 220px !important;
    }
    
    .page-banner .page-title {
        font-size: 1.8rem !important;
    }
}
