.title-section {
    background-image: url("/static/images/main-images/hero-img.jpg");
    background-size: cover;
    background-position: center;
    color: #000000;
    font-family: 'Didact Gothic', sans-serif;
    padding: 100px 0;
    height: 700px;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    text-align: center; /* Center text inside the section */
}






/* Grouped Buttons  */
    .filter-btn-group {
      display: flex;
      gap: 10px;
      margin: 20px;
    }
    .filter-btn {
      padding: 10px 20px;
      cursor: pointer;
      border: 1px solid #42488D;
      border-radius: 5px;
      color: #42488D;
      background-color: #ffffff;
      transition: background-color 0.3s;
    }
    .filter-btn.active {
      background-color: #42488D;
      color: white;
      border-color: #42488D;
    }

    #customDate {
      display: none;
      margin-top: 10px;
    }




