/* navbar code */
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* navbar styling */
.custom-navbar {
  background-color: #f1eaea;
  border-bottom: 1px solid #ddd;
}

.custom-navbar-container {
  max-width: 1163px;
  margin: 0 auto;
  padding: 20px 20px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.custom-logo img {
  height: 63px;
}

/* navigation links */
.custom-nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.custom-nav-links a {
  text-decoration: none;
  color: #252525;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.custom-nav-links a:hover {
  color: #FAB000;
}

.custom-nav-links a.active {
  color: #FAB000 !important; 
  font-weight: 500;
}

/* quote button */
.custom-quote-button a {
  background-color: #FAB000;
  color: #252525;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.custom-quote-button a:hover {
  background-color: #e0a800;
}

/* responsive design */
@media (max-width: 1024px) {
  .custom-navbar-container {
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 30px 20px;
  }

  .custom-quote-button {
    order: 3;
  }
}

@media (max-width: 768px) {
  .custom-navbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .custom-nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .custom-quote-button {
    margin-top: 10px;
  }
}

/* hamburger button styling */
.custom-hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #252525;
}

/* nav hidden by default on small screens */
@media (max-width: 768px) {
  .custom-hamburger {
    display: block;
    margin-left: 10px;
  }

  .custom-navbar-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .custom-logo {
    flex: 1;
  }

  .custom-quote-button {
    margin-left: 10px;
  }

  .custom-nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    background-color: #f1eaea;
    padding: 15px 0;
    border-top: 1px solid #ddd;
  }

  .custom-nav-links.show {
    display: flex;
  }
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
} */

/* navbar styling */
/* .navbar {
  background-color: #f1eaea;
  border-bottom: 1px solid #ddd;
}


 .navbar-container {
  max-width: 1163px;
  margin: 0 auto;
  padding: 20px 20px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
} */



/* .logo img {
  height: 63px;
} */

/* navigation links */
/* .nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #252525;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FAB000;
}
.nav-links a.active {
  color: #FAB000 !important; 
  font-weight: 500;
} */

/* quote button */
/* .quote-button a {
  background-color: #FAB000;
  color: #252525;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.quote-button a:hover {
  background-color: #e0a800;
} */

/* responsive design */
/* @media (max-width: 1024px) {
  .navbar-container {
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 30px 20px;
  }

  .quote-button {
    order: 3;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .quote-button {
    margin-top: 10px;
  }
} */

/* checking hamburger responsiveness */
/* hamburger button styling */
/* .hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #252525;
} */


/* nav hidden by default on small screens */
/* @media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: 10px;
  }

  .navbar-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  } */

  /* Logo, Hamburger, and Quote button stay in one line */
  /* .logo {
    flex: 1;
  }

  .quote-button {
    margin-left: 10px;
  } */

  /* Nav links hidden until hamburger is clicked */
  /* .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    background-color: #f1eaea;
    padding: 15px 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.show {
    display: flex;
  }
}
 */

/* truck big image... */
/* hero section */
.hero {
  background-image: url('../images/Mask group.png'); 
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 1163px;
  width: 100%;
  color: #fff;
  padding-left: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background-color: #FAB000;
  color: #252525;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #e0a800;
}

/* responsive hero */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* services section..... */
.services {
  background-color: #f1f1f1;
  padding: 60px 20px;
}

.services .container {
  max-width: 1164px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  color: #252525;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* grid layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* card styling */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card img {
  width: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #252525;
}

.service-card p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-btn {
  /* background-color: #FAB000;
  color: #252525;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s; */

  background-color: #FAB000;
  color: #252525;
  padding: 10px 0; /* less horizontal padding */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: block ; /* makes button full width */
  width: 100%;    /* ensures button stretches to card width */
  text-align: center; /* centers text */
  font-size: 15px; /* slightly smaller font */
  margin-top: 18px; /* add space above button */
  transition: background-color 0.3s;
  box-sizing: border-box;
}

.service-btn:hover {
  background-color: #e0a800;
}

/* responsive grid behavior */
@media (max-width: 768px) {
  .services h2 {
    font-size: 22px;
  }

  .section-description {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* why choose us section...... */
.why-choose-us {
  background-color: #FAB000;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 28px;
  color: #252525;
  font-weight: 700;
  margin-bottom: 15px;
}

.choose-description {
  font-size: 16px;
  color: #252525;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.choose-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.choose-item img {
  width: 40px;
  margin-bottom: 15px;
}

.choose-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #252525;
  margin-bottom: 8px;
}

.choose-item p {
  font-size: 14px;
  color: #252525;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 22px;
  }

  .choose-description {
    font-size: 14px;
  }

  .choose-item h3 {
    font-size: 16px;
  }

  .choose-item p {
    font-size: 13px;
  }

  .choose-item img {
    width: 32px;
  }
}
 /* what our customers says */
 .testimonials {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.testimonials .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.testimonials .intro-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
 /* .testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; 
} */


.testimonial-card {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;

}

 /* .testimonial-card {
  flex: 0 0 100%; 
  max-width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
} */


.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial-card .google-icon {
  width: 24px;
  height: auto;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

.read-more {
  font-size: 14px;
  color: #00bfff;
  text-decoration: underline;
}

.slider-dots {
  margin-top: 24px;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  margin: 0 6px;
  transition: background-color 0.3s;
}

.slider-dots .dot.active {
  background-color: #1a1a1a;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.review-date {
  font-size: 12px;
  color: #bbb;
  margin-top: 2px;
}
.google-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
 
/* <!-- checkout our area of service --> */
.areas-of-service {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.areas-of-service h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.map-wrapper {
  display: flex;
  justify-content: center;
}

.map-wrapper img {
  max-width: 100%;
  width: 600px;
  height: auto;

}
/* feedback form */
.testimonial-form-section {
    background: #f7f9fc;
    padding: 40px 0;
}

.testimonial-container {
    max-width: 700px;
    margin: auto;
    background: #e4dcdc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-container h2 {
    text-align: center;
    color: #060d15;
    margin-bottom: 20px;
    font-size: 23px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1d3557;
}

.form-submit {
    text-align: center;
}

.form-submit button {
    background: #1d3557;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit button:hover {
    background: #0f223d;
}


/* <!-- get a quick and free moving quote --> */
.quote-section {
  background-color: #e6e6e6;
  padding: 60px 20px;
  text-align: center;
}

.quote-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.quote-form {
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group.full-width {
  flex: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e2e2e;
}

input, select {
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"] {
  
  margin: 20px auto 0 auto;      /* centers the button */
  background-color: #1f2d1f;
  color: #fff;
  padding: 12px 40px;            /* smaller button */
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  display: block;
  width: auto;                   /* not full width */
  max-width: 320px;              /* optional: limit max width */
  text-align: center;
}

button[type="submit"]:hover {
  background-color: #374c37;
}




/* footer.. */
.site-footer {
  background-color: #1d2c1d;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #555;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 70px; 
  width: auto;
}

.footer-contact-text p {
  margin: 3px 0;
  font-size: 14px;
  line-height: 1.4;
}


.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  margin-top: 10px;
  filter: brightness(0) invert(1); /* makes icons white */
}

/* .footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  background-color: #1d2c1d;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
} */
 .footer-bottom {
  padding: 15px 20px;
  font-size: 14px;
  background-color: #1d2c1d;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
}

/* mobile fix for footer bottom */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-bottom p {
    text-align: center;
  }
}




/* about us page..... */

/* about us page background */
.about-bg {
  background: #e6e6e6;
  min-height: 100vh;
}

/* main content layout */
.about-main-content {
  max-width: 1163px;
  margin: 40px auto 0 auto;
  padding: 0 20px 48px 20px;
}

/* about hero row */
.about-hero-row {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 36px;
}

/* truck image */
.about-hero-img {
  width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 8px 8px 0 #FAA800;
  background: #fff;
}

/* about hero text */
.about-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #232D25;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-hero-text p {
  font-size: 1.08rem;
  color: #232D25;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

/* mission section */
.about-mission {
  margin-top: 48px;
  text-align: center;
  background: transparent;
}

.about-mission h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #232D25;
  margin-bottom: 18px;
  text-align: center;
}

.about-mission p {
  font-size: 1.18rem;
  color: #232D25;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mission-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 12px;
  margin-bottom: 32px;
}

.mission-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  padding: 32px 28px 28px 28px;
  min-width: 260px;
  max-width: 320px;
  text-align: left;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #232D25;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.mission-card p {
  font-size: 1rem;
  color: #232D25;
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.5;
}

/* get a quote button */
.mission-cta {
  margin-top: 0;
  text-align: center;
}

.mission-quote-btn {
  display: inline-block;
  background: #FAA800;
  color: #232D25;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 38px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(250,168,0,0.08);
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
}

.mission-quote-btn:hover {
  background: #fff;
  color: #FAA800;
  border: 1.5px solid #FAA800;
}

/* responsiveness */
@media (max-width: 1000px) {
  .mission-cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .mission-card {
    min-width: 0;
    width: 90%;
    max-width: 400px;
  }
}

/* responsiveness */
@media (max-width: 1200px) {
  .navbar-container,
  .about-main-content {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .about-main-content {
    padding: 18px 8px 28px 8px;
  }
  .about-hero-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .about-hero-img {
    width: 100%;
    max-width: 340px;
    height: 180px;
  }
}
/* what our customers says */
 .testimonials {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.testimonials .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.testimonials .intro-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial-card .google-icon {
  width: 24px;
  height: auto;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

.read-more {
  font-size: 14px;
  color: #00bfff;
  text-decoration: underline;
}

.slider-dots {
  margin-top: 24px;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  margin: 0 6px;
  transition: background-color 0.3s;
}

.slider-dots .dot.active {
  background-color: #1a1a1a;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.review-date {
  font-size: 12px;
  color: #bbb;
  margin-top: 2px;
}
.google-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
 /* .google-icon {
  background-color: #ffffffe6;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
} */

/* <!-- checkout our area of service --> */
.areas-of-service {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.areas-of-service h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.map-wrapper {
  display: flex;
  justify-content: center;
}

.map-wrapper img {
  max-width: 100%;
  width: 600px;
  height: auto;
}

/* <!-- get a quick and free moving quote --> */
.quote-section {
  background-color: #e6e6e6;
  padding: 60px 20px;
  text-align: center;
}

.quote-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.quote-form {
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group.full-width {
  flex: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e2e2e;
}

input, select {
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"] {
  margin-top: 20px;
  background-color: #1f2d1f;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"]:hover {
  background-color: #374c37;
}


/* get a quote page...... */


/* responsiveness */
@media (max-width: 1024px) {
  .navbar-container {
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 30px 20px;
  }

  .quote-button {
    order: 3;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .quote-button {
    margin-top: 10px;
  }
}

/* truck big image of quote page... */
/* hero section */
.hero {
  background-image: url('../images/Mask group.png'); 
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 1163px;
  width: 100%;
  color: #fff;
  padding-left: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* responsive Hero quote */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  
}

/* info gath quote */
/* css\style.css  */

/* quote Section */
.quote-section {
  background: #e6e6e6;
  padding: 48px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* quote form */
.quote-form {
  background: #fff;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #232D25;
  font-size: 1rem;
}

.required {
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 700;
}

input, select, textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: #f7f7f7;
  color: #232D25;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #FAA800;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* .addons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
}

.addons-row label {
  font-weight: 500;
  font-size: 1rem;
  color: #232D25;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;

}



@media (max-width: 500px) {
  .quote-form {
    padding: 14px;
  }
  .addons-row {
    grid-template-columns: 1fr; 
  }
}   */

.addons-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.addons-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  font-weight: 500;
  font-size: 1rem;
  color: #232D25;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}

.addons-row label:hover {
  background: #f0f0f0;
  border-color: #FAA800;
}

.addons-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .addons-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .addons-row label {
    padding: 10px 12px;
  }
}



.quote-submit-btn {
  display: block;
  margin: 18px auto 0 auto;
  background: #232D25;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.quote-submit-btn:hover {
  background: #FAA800;
  color: #232D25;
}

/* responsiveness */
/* @media (max-width: 700px) {
  .quote-form {
    padding: 18px 8px 18px 8px;
    max-width: 98vw;
  }
  .addons-row {
    gap: 18px;
  }
} */


/* checkout area of service quote... */

.areas-of-service {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.areas-of-service h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.map-wrapper {
  display: flex;
  justify-content: center;
}

.map-wrapper img {
  max-width: 100%;
  width: 600px;
  height: auto;
}


/* servive_areas.html...... */

/* responsiveness */
@media (max-width: 1024px) {
  .navbar-container {
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 30px 20px;
  }

  .quote-button {
    order: 3;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .quote-button {
    margin-top: 10px;
  }
}
/* service area page background*/
body {
  background: #e6e6e6;
}

/* main container */
.service-areas-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 48px 0;
}

/* areas card */
.areas-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  margin: 0 auto 32px auto;
  max-width: 900px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px 36px 48px;
  width: 100%;
}

.areas-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #232D25;
  margin: 0;
  line-height: 1.1;
}

.areas-map-img {
  width: 260px;
  max-width: 40vw;
  margin-left: 48px;
}

/* map card */
.map-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  margin: 0 auto 32px auto;
  max-width: 900px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-map-img {
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  display: block;
}

/* areas list */
.areas-list-section {
  margin: 32px auto 0 auto;
  max-width: 900px;
  background: transparent;
}

.areas-list {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.areas-list > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.areas-list label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  color: #232D25;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.areas-list input[type="checkbox"] {
  accent-color: #232D25;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* responsive */
@media (max-width: 1000px) {
  .areas-card-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 18px;
  }
  .areas-map-img {
    margin-left: 0;
    margin-top: 18px;
    width: 180px;
    max-width: 80vw;
  }
  .service-map-img {
    max-width: 98vw;
  }
  .areas-list {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
/* <!-- get a quick and free moving quote area_service --> */
.quote-section {
  background-color: #e6e6e6;
  padding: 60px 20px;
  text-align: center;
}

.quote-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.quote-form {
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group.full-width {
  flex: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e2e2e;
}

input, select {
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"] {
  margin-top: 20px;
  background-color: #1f2d1f;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"]:hover {
  background-color: #374c37;
}

/* contact us page.... */

.contact-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 48px 0;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #232D25;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 18px;
}

.contact-desc {
  font-size: 1.08rem;
  color: #232D25;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px auto;
  line-height: 1.5;
}

.contact-form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 32px 32px 32px;
  text-align: left;
}

.contact-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #232D25;
  margin-bottom: 24px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}

.contact-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-form-group.full-width {
  width: 100%;
  margin-top: 18px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #232D25;
  font-size: 1rem;
}

.required {
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: #f7f7f7;
  color: #232D25;
  transition: border-color 0.2s;
  margin-bottom: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FAA800;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  display: block;
  margin: 28px 0 0 auto;
  background: #232D25;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-submit-btn:hover {
  background: #FAA800;
  color: #232D25;
}

/* responsive */
@media (max-width: 1000px) {
  .contact-form-card {
    padding: 24px 8px 18px 8px;
  }
  .contact-main {
    padding: 18px 0 28px 0;
  }
}

@media (max-width: 700px) {
  .contact-form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form-card {
    padding: 12px 2vw 12px 2vw;
  }
  .contact-title {
    font-size: 1.3rem;
  }
}
/* get in touch section */
.contact-touch-section {
  background: #233126;
  padding: 38px 0 32px 0;
  margin-top: 36px;
}

.contact-touch-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-touch-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-touch-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-touch-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  padding: 22px 38px 18px 38px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  flex: 1 1 260px;
}

.contact-touch-icon {
  font-size: 1.5rem;
  color: #232D25;
  margin-right: 8px;
}

.contact-touch-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #232D25;
  margin-bottom: 2px;
}

.contact-touch-value {
  font-size: 1rem;
  color: #232D25;
  word-break: break-all;
}

.contact-touch-value a {
  color: #232D25;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-touch-value a:hover {
  color: #FAA800;
}

/* business hours section */
.business-hours-section {
  background: transparent;
  padding: 32px 0 18px 0;
  text-align: center;
}

.business-hours-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #232D25;
  margin-bottom: 24px;
}

.business-hours-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.business-hours-card {
  background: #FAA800;
  border-radius: 10px;
  padding: 18px 38px 14px 38px;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}

.business-hours-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #232D25;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.business-hours-time {
  font-size: 1rem;
  color: #232D25;
  font-weight: 500;
}

/* map section */
.contact-map-section {
  background: transparent;
  padding: 0 0 32px 0;
  text-align: center;
}

.contact-map-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.13);
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-img {
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  display: block;
}

/* responsiveness */
@media (max-width: 1100px) {
  .contact-touch-cards,
  .business-hours-cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .contact-touch-card,
  .business-hours-card {
    width: 90%;
    min-width: 0;
    max-width: 98vw;
  }
  .contact-map-card {
    max-width: 98vw;
  }
}
/* floating chat icons */
.floating-chat-icons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.chat-icon img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  object-fit: cover;
}

.chat-icon img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(250,168,0,0.18);
}

/* responsive; move icons up and shrink on small screens */
@media (max-width: 600px) {
  .floating-chat-icons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .chat-icon img {
    width: 38px;
    height: 38px;
  }
}


/* gallery page.... */

/* responsiveness */
@media (max-width: 1024px) {
  .navbar-container {
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 30px 20px;
  }

  .quote-button {
    order: 3;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .quote-button {
    margin-top: 10px;
  }
}
/* Gallery Page */
.gallery-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 48px 0;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #232D25;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 18px;
}

.gallery-desc {
  font-size: 1.08rem;
  color: #232D25;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px auto;
  line-height: 1.5;
}

/* filters */
.gallery-filters-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}

.gallery-filters-btn {
  background: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #232D25;
  padding: 8px 18px 8px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-left: 16px;
}

.gallery-filters-icon {
  width: 18px;
  height: 18px;
}

.gallery-filters-dropdown {
  position: absolute;
  top: 44px;
  left: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  padding: 22px 32px 18px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  min-width: 320px;
  z-index: 10;
}

.gallery-filters-dropdown label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #232D25;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.gallery-filters-dropdown input[type="checkbox"] {
  accent-color: #232D25;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 auto 32px auto;
  max-width: 1000px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.18s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Pagination */
.gallery-pagination {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gallery-page-btn {
  background: #FAA800;
  color: #232D25;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 7px 28px;
  margin: 0 4px;
  box-shadow: 0 2px 8px rgba(250,168,0,0.08);
  border: none;
  cursor: default;
}

.gallery-page-btn.active {
  background: #FAA800;
}

/* responsiveness */
@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gallery-main {
    padding: 18px 0 28px 0;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-filters-dropdown {
    min-width: 180px;
    padding: 14px 10px 10px 10px;
    gap: 10px 18px;
  }
  .gallery-filters-btn {
    margin-left: 4px;
    padding: 6px 10px 6px 8px;
    font-size: 0.98rem;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* checking */
/* Interactive Cities Section */
.interactive-cities {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.interactive-cities h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.city-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.city-card h3 {
  margin-top: 0;
  color: #2a6496;
  font-size: 16px;
}

.city-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 13px;

}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Available Cities */
.city-card.available {
  border-top: 3px solid #4CAF50;
}

.city-card.available .status-badge {
  background-color: #4CAF50;
  color: white;
}

/* Unavailable Cities */
.city-card.unavailable {
  border-top: 3px solid #F44336;
  opacity: 0.8;
}

.city-card.unavailable .status-badge {
  background-color: #F44336;
  color: white;
}

.city-card.unavailable h3 {
  color: #777;
}

/* Privacy Page Styling */
.page-header {
  background: #213029;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.privacy {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.7;
  color: #333;
}

.privacy h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #213029;
}

.privacy ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
}

.policy-container {
      max-width: 900px;
      margin: 50px auto;
      background: greyish;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      line-height: 1.7;
    }
    .policy-container h1 {
      text-align: center;
      font-size: 26px;
      margin-bottom: 30px;
      color: rgb(11, 11, 11);
    }
    .policy-container h2 {
      font-size: 19px;
      margin-top: 40px;
      color: rgb(10, 9, 9);
      border-left: 4px solid #213029;
      padding-left: 12px;
    }
    .policy-container h3 {
      margin-top: 25px;
      color: #444;
      font-size: 18px;
    }
    .policy-container p, 
    .policy-container li {
      font-size: 15px;
      color: #555;
    }
    .policy-container ul {
      margin-left: 20px;
      list-style: disc;
    }
    .effective-date {
      text-align: left;
      font-style: italic;
      color: #777;
      margin-bottom: 20px;
    }


