/*********************************************
  1. FLEET HERO / BANNER
**********************************************/
.fleet-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .fleet-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fleet-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  .fleet-hero-overlay h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .fleet-hero-overlay p {
    font-size: 1.1rem;
  }
  
  /*********************************************
    2. FLEET MAIN / INTRO
  **********************************************/
  .fleet-main {
    padding: 2rem 5%;
    background: #fff;
  }
  .fleet-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .fleet-intro h2 {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 1rem;
  }
  .fleet-intro p {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  /*********************************************
    3. FLEET FEATURES SECTION
  **********************************************/
  .fleet-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .fleet-feature {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    align-items: flex-start;
  }
  
  .fleet-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .fleet-feature-text h3 {
    color: var(--deep-green);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
  }
  .fleet-feature-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .fleet-feature-text ul {
    margin-left: 1.5rem;
    list-style: disc;
  }
  .fleet-feature-text li {
    margin-bottom: 0.5rem;
  }
  
  /*********************************************
    4. FLEET NOTICE SECTION
  **********************************************/
  .fleet-notice {
    margin-top: 2rem;
    background: #fafafa;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .fleet-notice h3 {
    color: var(--brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
  }
  .fleet-notice p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }


  /* FINAL CTA BANNER */
.fleet-cta-banner {
  padding: 2rem 5%;
  background: var(--beige);
  text-align: center;
}

.fleet-cta-banner .cta-content h2 {
  margin-bottom: 1rem;
  color: var(--brown);
  font-size: 2rem; /* Adjust as needed */
}

.fleet-cta-banner .cta-content p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.8;
  text-align: center;
  color: #333; /* Ensure readability */
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* Responsive Adjustments */
@media (max-width: 600px) {
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
  
  /*********************************************
    5. RESPONSIVE MEDIA QUERIES
  **********************************************/
  @media (max-width: 992px) {
    .fleet-feature {
      grid-template-columns: 1fr;
    }
    .fleet-feature-text {
      margin-top: 1rem;
    }
    .fleet-image {
      height: auto;
      max-height: 300px;
    }
  }