.breadcrumb-banner {
    position: relative;
    background: url('/assets/images/banner.jpg') no-repeat center center/cover; /* Replace with actual image path */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.breadcrumb-content {
    position: relative;
    color: #fff;
    z-index: 1;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fad565;
}

.breadcrumb-links {
    font-size: 14px;
}

.breadcrumb-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb-links a:hover {
    text-decoration: underline;
}

.breadcrumb-links span {
    color: #fad565;
    margin: 0 5px;
}

.breadcrumb-links .current {
    font-weight: 500;
    color: #fff;
}
.shipment-section {
  padding: 80px 20px 40px;
}
.shipment-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: #aaa;
  margin-bottom: 10px;
}
.shipment-title {
  font-size: 2.5rem;
  font-weight: bold;
}




    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      position: relative;
      display: flex;
    }

    .vertical-line,
.overlay-line,
.vertical-divider {
  display: none !important;
}
    .content {
      width: 100%;
      z-index: 1;
      padding: 0 40px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    th, td {
      padding: 15px;
      border: 1px solid #fff;
      text-align: left;
    }

    th {
      font-size: 20px;
      font-weight: 600;
    }

    .note {
      margin: 30px 0;
      font-size: 14px;
    }

    .policy-section {
      margin-top: 60px;
    }

    .policy-subtitle {
      letter-spacing: 2px;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #ccc;
    }

    .policy-title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .policy-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #eee;
    }
    h2 {
      font-size: 22px;
      font-weight: normal;
      margin-bottom: 20px;
    }

    p {
      font-size: 15px;
      margin: 6px 0;
    }
    .columns {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
  }

  .column {
    width: 32%;
  }

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 40px 10px;
  }
  .content {
    padding: 0 10px;
  }
  th, td {
    padding: 10px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    padding: 20px 2vw;
  }
  .content {
    padding: 0 2vw;
  }
  table, th, td {
    font-size: 13px;
    padding: 7px;
  }
  th {
    font-size: 16px;
  }
}


