.logistics-hero {
    background-color: white;
    padding: 4rem 1rem 1rem 1rem; /* ↓ reduced bottom padding */
    display: flex;
    justify-content: center;
    margin-bottom: 0; /* Ensure no extra space */
  }
  
  .logistics-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .logistics-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .logistics-text {
    flex: 1;
    min-width: 280px;
  }
  
  .logistics-text h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .yellow-box {
    background-color: #f3c623;
    padding: 0.5rem;
    font-style: italic;
  }
  


  @media (max-width: 768px) {
    .logistics-hero {
      padding: 2rem 0.5rem 1rem 0.5rem;
      margin: 0;
      box-sizing: border-box;
    }
    
    .logistics-hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100%;
    }
  
    .logistics-text {
      padding: 1rem 0.5rem;
      width: 100%;
      box-sizing: border-box;
    }
    
    .logistics-image {
      width: 100%;
      margin: 0;
      padding: 0;
    }
    
    .logistics-image img {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
  }
  