/* Page Banner Styles */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .page-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff !important;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
  }
  
  .page-banner .banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }
  
  /* Decorative underline for the title */
  .page-banner .banner-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ffcc00; /* Gold accent color */
    margin: 15px auto 0;
  }
  
  .page-banner .banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff !important;
    font-weight: 300;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Breadcrumb styles - directly below the banner with no gap */
  .breadcrumb-section {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 0; /* Ensure no margin */
    padding: 12px 0; /* Keep padding for content spacing */
  }
  
  .breadcrumb {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
    margin-bottom: 0;
  }
  
  .breadcrumb-item {
    color: #555;
    font-size: 14px;
  }
  
  .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .breadcrumb-item a:hover {
    color: #0056b3; /* Blue hover color */
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: #6c757d;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">"; /* Changed separator to a more modern style */
    padding: 0 8px;
    color: #999;
    font-size: 16px;
  }
  
  .page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
  }
  
  .page-content {
    padding: 40px 0;
  }
  
  .page-content-body {
    line-height: 1.8;
  }
  
  /* Fix for gap between banner and breadcrumb */
  .page-banner + .breadcrumb-section {
    margin-top: 0 !important;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .page-banner {
      height: 200px;
    }
  
    .banner-title {
      font-size: 2rem;
    }
  
    .banner-subtitle {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .page-banner {
      height: 150px;
    }
  
    .banner-title {
      font-size: 1.5rem;
    }
  
    .banner-subtitle {
      font-size: 0.9rem;
    }
  }
  