  :root {
      --primary-blue: #094c85;
      --primary-orange: #ec5330;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .text-primary-custom {
      color: var(--primary-blue);
  }

  .bg-orange {
      background-color: var(--primary-orange) !important;
  }

  .btn-orange {
      background-color: var(--primary-orange);
      color: white;
      border: none;
  }

  .btn-orange:hover {
      background-color: #d14020;
      color: white;
  }

  .banner-section {
      /* Fallback if image missing */
      background-color: #333;
      background-size: cover;
      background-position: center;
      padding: 80px 0;
      color: white;
  }

  .nav-link {
      color: var(--primary-blue) !important;
      font-weight: bold;
  }

  .table-header-custom th {
      background-color: var(--primary-blue);
      color: white;
  }

  .blink {
      animation: blinker 1.5s linear infinite;
  }

  @keyframes blinker {
      50% {
          opacity: 0;
      }
  }

  .card-img-top {
      height: 250px;
      object-fit: cover;
      object-position: top;
  }

  .footer {
      background-color: #f8f9fa;
      border-top: 1px solid #dee2e6;
      padding: 20px 0;
      font-size: 0.9rem;
  }