/* ------------------------------------
   White info section below the hero
------------------------------------ */
.logistics-info {
    background-color: white;
    padding: 2rem 1.5rem 1rem; /* ↓ Adjust bottom space if needed */
    text-align: left;
    margin-top: 0; /* Force no external space */
  }
  
  /* Container limits max width and centers the content */
  .logistics-info-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Heading styling */
  .logistics-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #001d33;
  }
  
  /* Paragraph styling */
  .logistics-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #333;
  }
  
  /* ↓ Reduce gap after the last paragraph before the cards */
  .logistics-info p:last-of-type {
    margin-bottom: 0.5rem;
  }
  
  /* ----------- Desktop view adjustments ----------- */
  @media (min-width: 768px) {
    .logistics-info {
      padding: 2rem 2rem 3rem; /* ↓ Adjusted bottom padding */
    }
  
    .logistics-info h2 {
      font-size: 2rem;
    }
  
    .logistics-info p {
      font-size: 1.1rem;
    }
  }