:root {
  --orange: #f57c00;
  --blue: #005cb9;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

.page-header {
        background: var(--orange);
        color: var(--white);
        margin-top: 24px;
        padding: 20px 0 !important;
        text-align: center;
}

.page-header h1 {
  font-size: 36px !important;
  font-weight: 700;
  color: var(--white) !important;
}

.page-header p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .page-header {
    padding: 30px 0;
  }

  .page-header h1 {
    font-size: 28px;
  }
}

/* Custom Tab as Section Heading */
.nav-tabs {
  border-bottom: none;
  justify-content: center;
}

.nav-tabs .nav-link {
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #005cb9;
  position: relative;
  background: none;
}

.nav-tabs .nav-link.active {
  color: #005cb9;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  height: 3px;
  width: 60%;
  background-color: #005cb9;
  border-radius: 2px;
}

.bg-current {
  background-color: #ffffff;
  border-left: 4px solid #005cb9;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.bg-past {
  background-color: #f1f1f1;
}

.section-title {
  color: #005cb9;
  border-bottom: 2px solid #005cb9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.ad-card {
  background-color: #fff;
  border-left: 4px solid #005cb9;
  padding: 16px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.no-ads {
  font-style: italic;
  color: gray;
}