body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E1E2D;
    position: relative;
  }
  
  .logo-container {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 10;
  }
  
  .logo {
    width: 120px;
    height: 43px; 
  }
  
 .banner-title {
    font-size: 4.5rem; 
    color: white;
    font-weight: 100; 
    z-index: 10;
  }
  
  .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1E1E2D, #2C2C3A, #3A3A47, #4A4A57, rgba(0, 0, 128, 0.58));
    opacity: 0.5;
    z-index: 0;
  }
  





.conditions-container {
    padding: 2rem;
    background-color: white;
    margin-left: 17rem; 
    max-width: 1200px; 
    margin-right: auto;
    margin-left: auto;
  }
  
  .intro-text {
    margin-bottom: 1rem;
    color: #000;
    text-align: left;
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.5rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem;
    color: #4A4A4A;
    text-align: left;
  }
  
  .section-text {
    margin-bottom: 1rem;
    color: #000;
    text-align: left;
  }
  
  .list-items {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
  }
  
  .section-divider {
    border: 1px solid #EFAA20;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .conditions-container {
      margin-left: 0;
      padding: 1rem;
    }
  
    .section-title {
      font-size: 1.25rem;
    }
  
    .intro-text {
      font-size: 1rem;
    }
  }