body {
      margin: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #fafbfc;
    }
    .contact-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 48px;
      padding: 60px 0;
      background: #fafbfc;
    }
    .contact-map {
      flex: 1 1 50%;
      min-width: 350px;
      max-width: 700px;
      border-radius: 10px;
      background: #fff;
      overflow: hidden;
      margin-top: 3%;
    }
    .contact-map iframe {
      width: 100%;
      height: 450px;
      border: 0;
      border-radius: 10px;
      display: block;
    }
    .contact-form-container {
      flex: 1 1 40%;
      min-width: 350px;
      max-width: 500px;
      background: rgba(255,255,255,0.7);
      border-radius: 10px;
      padding: 32px 32px 24px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact-form-container h2 {
      font-size: 1.7rem;
      font-weight: 500;
      margin-bottom: 8px;
      color: #7a7676;
      text-align: center;
    }
    .contact-underline {
      width: 60px;
      height: 4px;
      background: #c00;
      margin: 0 auto 32px auto;
      border-radius: 2px;
    }
    .contact-form {
      width: 100%;
      display: flex;
      position: relative;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 24px;
    }
    .contact-form button{
      width: 95%;
      
    }
    .contact-form input,
    .contact-form textarea {
      width: 95%;
      padding: 14px 18px;
      border: none;
      border-radius: 26px;
      background: #f3f3f3;
      font-size: 1rem;
      outline: none;
      transition: box-shadow 0.2s;
      box-shadow: 0 1px 2px rgba(0,0,0,0.03);
      resize: none;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      box-shadow: 0 0 0 2px #c00;
    }
    .contact-form button {
      padding: 14px 0;
      background: #fff;
      color: #0E2C53;
      border: 2px solid #0E2C53;
      border-radius: 25px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .contact-form button:hover {
      background: #fff;
      color: #c00;
    }
    .contact-details {
      width: 100%;
      margin-top: 16px;
      text-align: center;
      color: #444;
      font-size: 1rem;
    }
    .contact-details-title {
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: #222;
    }
    .contact-details-address,
    .contact-details-phone,
    .contact-details-email {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 1rem;
    }
    .contact-icon {
      font-size: 2em;
    }
    @media (max-width: 1100px) {
      .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 32px;
      }
      .contact-map,
      .contact-form-container {
        max-width: 95vw;
        min-width: unset;
      }
    }
    .freight-main {
  position: relative;
  top: 17%;
  margin-bottom: 6%;
}

/* Header section */
.freight-header {
  background: #183b5c;
  padding: 24px 0;
}

.freight-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 15px 0 15px 0;
  text-align: left;
  padding-left: 12vw;
}