
    .header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      z-index: 1;
    }

    .page-title {
      font-size: 2rem;
      font-weight: bold;
      color:black;
    }

    .breadcrumb {
      font-size: 0.9rem;
      color: #555;
    }

    .breadcrumb span {
      margin: 0 5px;
      color: #aaa;
    }

    .description {
      margin-top: 20px;
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 900px;
    }

    @media (max-width: 768px) {
      .container {
        padding: 20px;
      }

      .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }
    .section-title-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
        
.section-title-wrapper::before,
.section-title-wrapper::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc; /* Orange line */
  margin: 0 20px;
}
        
.section-title {
font-size: 28px !important;
font-weight: 700;
color: #000; /* Dark maroon */
white-space: nowrap;
}

@media (max-width: 768px) {
  .section-title-wrapper {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .section-title-wrapper::before,
  .section-title-wrapper::after {
    display: none; /* Hide side lines on small screens for better spacing */
  }

  .section-title {
    font-size: 22px;
    text-align: center;
  }
  
  