    /* New Facility Banner Styles */
    .new-facility-banner {
      background: linear-gradient(135deg, var(--accent-blue, #0066cc) 0%, var(--dark-blue, #1a365d) 100%);
      color: white;
      padding: 2rem;
      margin: 2rem 0;
     
      box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
      border-left: 5px solid #fff;
    }

    .banner-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .banner-text h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      color: white;
    }

    .banner-text p {
      font-size: 1rem;
      margin: 0 0 0.5rem 0;
      opacity: 0.9;
      line-height: 1.4;
    }

    .banner-text .banner-details {
      font-size: 0.9rem;
      opacity: 0.8;
      margin: 0;
    }

    .banner-badge {
      background: linear-gradient(135deg, #ff6b35, #f7931e);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }

    @media (max-width: 768px) {
      .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .banner-text h3 {
        font-size: 1.25rem;
      }

      .new-facility-banner {
        padding: 1.5rem;
        margin: 1rem 0;
      }
    }






