body {
  /* background: #f6f8fa; */
  background: #fff;
  font-family: Arial, sans-serif;
  margin: 4rem 0;
  padding: 0; 
}

 /* Paste the UPDATED CSS from section 1 here, including all the existing CSS below the HEADER STYLES section */
    /* --- GLOBAL LAYOUT FIXES (Based on style.css context) --- */
    /* Adjusting body margin setup for the fixed header */
    body {
       min-height: 100vh; 
       display: flex;
       flex-direction: column;
       margin: 0; /* Override external margin to allow fixed header placement */
    }

    /* Wrapper to push content down below the fixed header (Header height is now closer to 6rem) */
    .content-wrapper {
        flex-grow: 1;
        padding-top: 6.5rem; /* Increased space to clear the slightly taller fixed header */
    }

    /* --- HEADER STYLES --- */
    #main-header {
      background-color: #000;
      color: #fff;
      padding: 1rem 2rem; /* Increased padding */
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      box-sizing: border-box;
    }

    .navbar {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container img {
      max-height: 55px; /* Increased height for prominence */
      width: auto;
      display: block;
    }

    .nav-links {
      list-style: none;
      display: flex;
      /* Increased gap to spread out links */
      gap: 35px; 
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      /* Matching the gold/orange color from the screenshot */
      color: #FFC300; 
      text-decoration: none;
      font-weight: 400; /* Made text bolder */
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      /* Subtle change on hover, keeping the orange theme */
      color: #FFD700; 
      text-decoration: underline;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #FFC300; /* Set toggle color to orange */
    }

    /* Mobile Header Styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid #333;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        margin: 10px 0;
      }

      .menu-toggle {
        display: block;
      }
      
      #main-header {
        padding: 0.5rem 1rem;
      }
    }
    

form {
      width: 100%;
      max-width: 700px;
      margin: auto;
      /* margin: 40px auto; */
      background: #fff;
      /* border: 1px solid #ddd; */
      border-radius: 10px;
      padding: 2rem;
      box-sizing: border-box;
    }


/* form {

  margin: 40px auto;
  padding: 32px 28px 24px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
} */

h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #2d3a4b;
  font-size: 2rem;
}

label {
  font-weight: 500;
  color: #34495e;
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 13px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 1rem;
  background: #f9fafb;
  transition: border 0.2s;
  box-sizing: border-box;
  margin: 10px 0 10px 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4f8cff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 70px;
}

/* div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
} */

div label {
  margin-bottom: 0;
  font-weight: normal;
}

input[type="radio"] {
  margin-right: 4px;
  margin-left: 0;
}

/* button[type="submit"] {
  width: 100%;
  background-color: #1d72b8;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
} */

button:hover {
  background-color: #155a90;
} 

.service-type{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0 1.2rem 1rem;
}


.autocomplete-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #d1d5db;
  /* margin-top: 5.5rem; */
  border-radius: 4px;
  z-index: 1000;
  max-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.autocomplete-option {
  width: 100%;
  padding: 0.2rem 1rem;
  cursor: pointer;
}
.autocomplete-option:hover {
  background: #f0f4fa;
}

#map{
  margin: 1rem 0;
  /* width: 100%; */
  height: 10rem;
}

#payment_successful_body, #payment_unsuccessful_body {
  background: #f6f8fa;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

#payment_successful_div, #payment_unsuccessful_div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  padding: 2.5em 2em 2em 2em;
  text-align: center;
  max-width: 35rem;
}

#payment_successful_header {
  color: #27ae60;
  font-size: 2.2rem;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

#payment_unsuccessful_header {
  color: #ed0a0a;
  font-size: 2.2rem;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

#payment_successful_p, #payment_unsuccessful_p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 2em;
}

#payment_successful_a, #payment_unsuccessful_a {
  display: inline-block;
  padding: 0.75em 2em;
  background: #2d72d9;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}

#payment_successful_a:hover {
  background: #1956b3;
}
#payment_unsuccessful_a:hover {
  background: #1956b3;
}

/* #vehicle-image{
  display: none;
  border-radius: 10px;
  height: 20rem;
  max-width: 20rem;
} */

  @media (max-width: 600px) {
form {
  border: none;
}

  }