/* Logistics Zigzag Section */
.logistics-zigzag {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Individual full-width card row */
  .logistics-zigzag-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    min-height: 400px; /* Optional: define consistent height */
  }
  
  /* Alternate layout */
  .logistics-zigzag-row.reverse {
    flex-direction: row-reverse;
  }
  
  /* Left (image) and right (text) split */
  .zigzag-image,
  .zigzag-text {
    flex: 1 1 50%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Image styling */
  .zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Text styling */
  .zigzag-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #f9f9f9;
  }
  
  .zigzag-text h4 {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #193442;
    margin-bottom: 0.5rem;
  }
  
  .zigzag-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .zigzag-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  
  /* Mobile */
  @media (max-width: 900px) {
    .logistics-zigzag-row,
    .logistics-zigzag-row.reverse {
      flex-direction: column;
    }
  
    .zigzag-text {
      padding: 2rem 1.5rem;
    }
  
    .zigzag-image img {
      height: auto;
      aspect-ratio: 16 / 9;
    }
  }
  