/* General Body Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222222; /* Dark Grey/Black for text */
  background-color: #ffffff; /* White background */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: #ffffff; /* White background for main header area */
}

/* Top Bar Styles */
.top-bar {
  background-color: #146432; /* Dark Green - approximated from visual */
  color: #ffffff; /* White text */
  padding: 10px 0;
  font-size: 0.9em;
}

.top-bar .container {
  text-align: center; /* As per www.theroofmosscleaners.co.uk, it has centered text */
}

/* Main Header Styles */
.main-header {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0; /* Light Grey border */
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container .logo {
  height: 60px; /* Adjust as needed */
  width: auto;
}

/* Navigation Styles */
.main-nav {
  display: none; /* Always hidden, hamburger menu will be used */
}

/* Header Contact Info Styles */
.header-contact {
  text-align: right;
}

.header-contact .call-us-text {
  display: block;
  font-size: 0.9em;
  color: #555555; /* Slightly lighter grey */
  margin-bottom: 5px;
}

.header-contact .phone-number {
  font-size: 1.4em;
  font-weight: bold;
  color: #33b249; /* Moss Green for phone number */
  text-decoration: none;
}

/* Styles for Header Right Content (Reviews + Contact) */
.header-right-content {
  display: flex;
  align-items: center;
}

.google-reviews {
  display: flex;
  align-items: center;
  margin-right: 20px; /* Space between reviews and phone */
  padding-right: 20px; /* Optional: if a border is added later */
}

.google-reviews-logo {
  height: 30px; /* Adjust as needed */
  width: auto;
  margin-right: 8px;
}

.google-reviews-text {
  font-size: 0.8em;
  color: #555555;
  line-height: 1.3;
}

/* Features Bar Styles */
.features-bar {
  background-color: #f0f0f0; /* Light Grey background, similar to screenshot */
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
}

.features-bar .container {
  display: flex;
  justify-content: space-around; /* Distribute items evenly */
  align-items: center;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #222222; /* Dark Grey/Black text */
  margin: 5px 10px; /* Spacing for wrapped items */
}

.feature-item .checkmark {
  color: #33b249; /* Moss Green for checkmarks */
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.2em;
}

/* Hero Section Styles - UPDATED for two-column layout and new testimonial */
.hero-section {
  background-image: url("../images/hero_background.jpg");
  background-size: cover;
  background-position: center center;
  color: #ffffff; /* White text for contrast */
  padding: 30px 0; /* Reduced padding */
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Slightly darker overlay for better contrast with two columns */
  z-index: 1;
}

.hero-container-flex {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 30px; /* Space between the two columns */
}

.hero-text-content {
  flex-basis: 58%; /* Adjust as needed */
  text-align: left;
}

.hero-text-content h1 {
  font-size: 2.5em; /* Adjusted for two-column layout */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-subheading {
  font-size: 1.1em; /* Adjusted */
  margin-bottom: 25px; /* Increased margin before testimonial */
  text-align: center; /* Centered as requested */
  max-width: 90%; /* Ensure it doesn_t get too wide if text is long */
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Box Styles (within hero) */
.testimonial-box {
  background-color: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 8px;
  margin-top: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 1em; /* Adjusted from reference */
  line-height: 1.6;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.testimonial-author-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* For positioning the Google G logo */
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-weight: bold;
  font-size: 1em;
  color: #222222;
  display: block;
}

.author-date {
  font-size: 0.9em;
  color: #777777;
  margin-left: 5px; /* If on same line as name, or remove if name is block */
}

.author-service {
  font-size: 0.9em;
  color: #777777;
  display: block; /* Below name/date */
  margin-top: 3px;
}

.author-rating {
  display: flex;
  align-items: center;
  margin-left: 15px; /* Space from author info */
}

.stars {
  color: #ffd700; /* Gold color for stars */
  font-size: 1.1em;
  margin-right: 8px;
}

.verified-badge {
  background-color: #e6f5e8; /* Light green from reference */
  color: #33b249; /* Moss green text */
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
}

.author-image {
  width: 50px; /* Adjust as needed */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px; /* Space from rating */
  border: 2px solid #ffffff; /* Optional: white border like some designs */
}

.google-g-logo {
  width: 18px; /* Adjust as needed */
  height: 18px;
  position: absolute;
  bottom: 0px; /* Position at bottom right of author image */
  right: 0px; /* Position at bottom right of author image */
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Form Content Styles - UPDATED */
.hero-form-content {
  flex-basis: 38%; /* Adjust as needed */
  background-color: #f0f0f0; /* Light grey background for the form block */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-form-placeholder-hero h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3em; /* Adjusted for new title */
  color: #222222;
  text-align: center;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
  color: #444444;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.cta-button-form {
  background-color: #ff8c00; /* High-converting Orange */
  color: #ffffff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.1em;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-bottom: 15px; /* Space before reassurance text */
}

.cta-button-form:hover {
  background-color: #e67e00; /* Darker Orange on hover */
}

.form-reassurance-text {
  font-size: 0.85em;
  color: #555555;
  text-align: left; /* Align text to left */
  line-height: 1.5;
}

.form-reassurance-text p {
  margin-bottom: 8px;
  display: flex;
  align-items: center; /* Align icon with text */
}

.form-reassurance-text p:last-child {
  margin-bottom: 0;
}

.form-reassurance-text i {
  margin-right: 8px;
  color: #33b249; /* Moss Green for icons */
  width: 16px; /* Ensure icons have consistent width */
  text-align: center;
}

/* Accreditation Section Styles - UPDATED for balanced logos */
.accreditation-section {
  padding: 40px 0;
  background-color: #f9f9f9; /* Very light grey background */
  text-align: center;
}

.accreditation-section h2 {
  font-size: 1.8em;
  color: #222222;
  margin-bottom: 30px;
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(220px, 1fr)
  ); /* Responsive grid */
  gap: 30px;
  align-items: start; /* Align items to the start of their grid cell */
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.accreditation-logo {
  height: 60px; /* Unified height for better balance */
  width: auto; /* Allow width to adjust based on aspect ratio */
  max-width: 170px; /* Prevent logos from becoming too wide */
  margin-bottom: 15px;
  object-fit: contain; /* Ensures logo scales within bounds without distortion */
}

/* Specific adjustment for Google Reviews logo if needed to visually match others */
.google-reviews-logo-accred {
  height: 45px; /* Slightly smaller if it appears too large due to its width */
}

.accreditation-text {
  font-size: 0.9em;
  color: #555555;
  line-height: 1.5;
}

.accreditation-text br {
  display: block; /* Ensure <br> creates a new line */
  margin-bottom: 0.3em; /* Add a small space after the emoji line */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  /* Tablet and below */
  .main-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    order: 3; /* Nav below logo and header-right */
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .main-nav ul {
    justify-content: center;
  }
  .header-right-content {
    margin-left: auto; /* Push to the right when nav wraps */
    margin-top: 10px; /* Add some space if logo is tall */
  }

  .hero-container-flex {
    flex-direction: column;
    align-items: center; /* Center items when stacked */
    gap: 25px;
  }
  .hero-text-content,
  .hero-form-content {
    flex-basis: 100%; /* Full width when stacked */
    max-width: 600px; /* Limit width for readability */
  }
  .hero-text-content {
    text-align: center; /* Center text when stacked */
  }
  .hero-text-content h1 {
    font-size: 2.2em;
  }
  .hero-subheading {
    font-size: 1em;
    text-align: center; /* Ensure it remains centered */
  }
  .testimonial-box {
    text-align: left; /* Keep testimonial text left-aligned even if parent is centered */
  }
  .accreditation-section h2 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .header-right-content {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-top: 15px;
  }
  .google-reviews {
    margin-right: 0;
    margin-bottom: 10px; /* Space between reviews and phone on mobile */
    padding-right: 0;
    border-right: none;
  }
  .header-contact {
    text-align: left;
    margin-top: 0;
  }
  .main-nav {
    order: initial; /* Reset order */
    width: auto;
  }
  .features-bar .container {
    justify-content: flex-start; /* Align to start on smaller screens */
  }
  .feature-item {
    width: calc(
      50% - 20px
    ); /* Two items per row on medium screens, accounting for margin */
    margin: 8px 10px;
  }
  .testimonial-author-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .author-rating {
    margin-left: 0;
    margin-top: 10px;
  }
  .author-image {
    margin-left: 0;
    margin-top: 10px;
  }
  .google-g-logo {
    /* Adjust positioning if needed for stacked layout */
    right: auto;
    left: 35px; /* Example: align with bottom of image */
    bottom: 0px;
  }
  .accreditations-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  .accreditation-logo {
    height: 50px; /* Adjust height for smaller screens */
    max-width: 150px;
  }
  .google-reviews-logo-accred {
    height: 40px; /* Adjust Google logo for smaller screens */
  }
}

@media (max-width: 480px) {
  .feature-item {
    width: 100%; /* Full width for each item on very small screens */
    justify-content: flex-start;
    margin: 8px 0;
  }
  .hero-section {
    padding: 40px 0;
  }
  .hero-text-content h1 {
    font-size: 1.9em;
  }
  .hero-subheading {
    font-size: 0.95em;
  }
  .contact-form-placeholder-hero h3 {
    font-size: 1.2em;
  }
  .cta-button-form {
    font-size: 1em;
    padding: 10px 15px;
  }
  .testimonial-text {
    font-size: 0.9em;
  }
  .author-name,
  .author-date,
  .author-service,
  .stars,
  .verified-badge {
    font-size: 0.85em;
  }
  .form-reassurance-text {
    font-size: 0.8em;
  }
  .accreditation-section h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
  .accreditations-grid {
    grid-template-columns: 1fr; /* Stack items on very small screens */
    gap: 25px;
  }
  .accreditation-logo {
    height: 45px; /* Further adjust height for very small screens */
    max-width: 130px;
  }
  .google-reviews-logo-accred {
    height: 35px; /* Further adjust Google logo */
  }
  .accreditation-text {
    font-size: 0.85em;
  }
}

/* ----- New Content Sections from Marlow Website ----- */

/* General Content Section Styling */
.content-section {
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0; /* Light separator line */
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 1.8em;
  color: #146432; /* Dark Green for headings */
  margin-bottom: 25px;
  text-align: center;
}

.content-section p,
.content-section ul li {
  font-size: 1em;
  line-height: 1.6;
  color: #333333; /* Dark grey for text */
  margin-bottom: 15px;
}

.content-section ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.content-section strong {
  color: #222222;
}

/* Sections with Image (Two-column layout) */
.with-image .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.with-image .text-content,
.with-image .image-content {
  flex: 1;
}

.with-image .image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Specific order for roof-cleaning-washing and experienced-cleaners */
#roof-cleaning-washing .container,
#experienced-cleaners .container {
  flex-direction: row-reverse; /* Image on left, text on right */
}

/* Process View Sections */
.process-view {
  background-color: #f9f9f9; /* Light grey background */
}

/* Pricing Section */
#cost-of-roof-cleaning .pricing-examples {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

#cost-of-roof-cleaning .price-item {
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 1em;
}

#cost-of-roof-cleaning .price-item strong {
  display: block;
  font-size: 1.5em;
  color: #33b249; /* Moss Green */
  margin-bottom: 5px;
}

#cost-of-roof-cleaning em {
  display: block;
  margin-top: 15px;
  font-size: 0.9em;
  color: #777777;
  text-align: center;
}

/* Accordion Styles */
.accordion-button {
  background-color: #146432; /* Dark Green */
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1em;
  transition: 0.4s;
  border-radius: 5px;
  margin-bottom: 2px; /* Space between accordion buttons */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button.active,
.accordion-button:hover {
  background-color: #1e8449; /* Slightly Lighter Green on hover/active */
}

.accordion-button::after {
  content: "\002B"; /* Unicode character for "+" sign */
  font-size: 1.3em;
  color: white;
  font-weight: bold;
}

.accordion-button.active::after {
  content: "\2212"; /* Unicode character for "−" sign */
}

.accordion-panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: 1px solid #f0f0f0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  margin-bottom: 10px; /* Space after panel content */
}

.accordion-panel.active {
  padding: 18px;
  border-top: 1px solid #f0f0f0; /* Add top border when active to separate from button */
}

/* Styles for sub-accordions (e.g., VIEW OUR PROCESS) */
.accordion-button.sub-accordion {
  background-color: #33b249; /* Moss Green - slightly lighter than main */
  font-size: 1em;
  margin-top: 15px; /* Space above sub-accordion */
}

.accordion-button.sub-accordion.active,
.accordion-button.sub-accordion:hover {
  background-color: #3cc65a; /* Lighter Moss Green on hover/active */
}

.accordion-button.sub-accordion::after {
  font-size: 1.2em;
}

/* Styles for step-accordions (e.g., 01 RAMS) */
.accordion-button.step-accordion {
  background-color: #a9d18e; /* Light Green for steps */
  color: #222222; /* Dark text for contrast on light green */
  font-size: 0.95em;
  padding: 12px 18px;
  margin-bottom: 1px;
}

.accordion-button.step-accordion.active,
.accordion-button.step-accordion:hover {
  background-color: #c5e0b4; /* Even Lighter Green for step hover/active */
}

.accordion-button.step-accordion::after {
  color: #222222; /* Dark icon for contrast */
  font-size: 1.1em;
}

.accordion-panel .accordion-panel {
  /* Nested panels might need slight adjustments if borders look too thick */
  border-left: 2px solid #33b249; /* Indent nested panels slightly */
  margin-left: 10px;
  border-radius: 0 0 4px 4px;
}

/* FAQ Section Specifics */
#faq .faq-item {
  margin-bottom: 20px;
}

#faq .faq-item h3 {
  font-size: 1.2em;
  color: #222222;
  margin-bottom: 8px;
}

/* Reasons Grid (Why Choose Us) */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.reason-item {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid #33b249; /* Green accent border */
}

/* Before & After Gallery */
.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ba-image-pair img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 5px; /* Space between before/after if stacked vertically */
}

/* Testimonials Grid (Marlow Page) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-item-marlow {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.testimonial-item-marlow p:first-child {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-item-marlow p:last-child {
  font-size: 0.9em;
  color: #555555;
  text-align: right;
  margin-bottom: 0;
}

/* Footer Styles */
footer {
  background-color: #222222; /* Dark Grey/Black */
  color: #cccccc; /* Light Grey text */
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #ffffff; /* White links */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments for content sections */
@media (max-width: 768px) {
  .with-image .container {
    flex-direction: column;
  }
  /* Ensure image is first for these specific sections on mobile */
  #roof-cleaning-washing .container,
  #experienced-cleaners .container {
    flex-direction: column; /* Stack normally on mobile */
  }
  #roof-cleaning-washing .container .image-content,
  #experienced-cleaners .container .image-content {
    order: -1; /* Make image appear first when stacked */
  }

  .content-section h2 {
    font-size: 1.6em;
  }
  .accordion-button {
    font-size: 1em;
    padding: 15px;
  }
  .accordion-button.sub-accordion {
    font-size: 0.95em;
  }
  .accordion-button.step-accordion {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

/* New Quote/Steps Section Styling - CORRECTED */
.steps-section-new {
  background-color: #f0f8ff; /* Light Alice Blue background, as per user screenshot */
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.steps-section-new h2 {
  font-size: 1.8em;
  color: #146432; /* Dark Green for headings */
  margin-bottom: 35px; /* Increased margin */
  text-align: center;
}

.steps-container-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items */
  gap: 25px; /* Space between step items */
}

.step-item-new {
  background-color: #33b249; /* Moss Green background for step boxes */
  color: #ffffff; /* White text */
  padding: 25px; /* Increased padding */
  border-radius: 10px; /* Slightly more rounded corners */
  flex-basis: calc(
    33.333% - 50px
  ); /* Aim for 3 items per row, accounting for gap and padding */
  min-width: 260px; /* Minimum width before wrapping */
  max-width: 320px; /* Max width for better control */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column; /* Stack number/icon and text vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text */
  position: relative;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-header-new {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Space between header and text */
}

.step-number-new-circle {
  background-color: #ffffff; /* White circle */
  color: #33b249; /* Moss Green number */
  border-radius: 50%;
  width: 35px; /* Slightly larger */
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 10px; /* Space between number and icon */
  flex-shrink: 0;
  border: 2px solid #146432; /* Darker green border */
}

.step-icon-new {
  font-size: 1.8em; /* Icon size */
  color: #ffffff; /* White icon */
  /* Removed margin-right as it_s handled by flex container and step-header-new */
}

.step-item-new p {
  margin: 0;
  font-size: 0.9em; /* Slightly smaller for better fit */
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive adjustments for the new steps section */
@media (max-width: 1024px) {
  /* Adjust breakpoint for 2 items per row earlier */
  .step-item-new {
    flex-basis: calc(50% - 40px); /* Two items per row */
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  /* Mobile - single column */
  .steps-container-new {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items in the column */
  }
  .step-item-new {
    flex-basis: 100%; /* Full width */
    max-width: 400px; /* Control max width on mobile */
    margin-bottom: 20px;
  }
  .step-header-new {
    margin-bottom: 12px;
  }
  .step-item-new p {
    font-size: 0.95em;
  }
}

/* Why Choose Us Section - New Layout */
#why-choose-us .container {
  /* Override default flex direction if any was set previously for this section */
  display: block;
}

.why-choose-us-grid {
  display: flex;
  gap: 30px;
}

.why-choose-us-left {
  flex: 1.2; /* Give a bit more space to the text content */
}

.why-choose-us-left h2 {
  text-align: left; /* Align heading to the left as per screenshot */
  font-size: 2em; /* Match screenshot heading size */
  margin-bottom: 20px;
  color: #146432; /* Dark Green for headings */
}

.why-choose-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin-bottom: 25px;
}

.why-choose-list li {
  padding-left: 20px; /* Space for custom bullet */
  position: relative;
  margin-bottom: 10px; /* Space between list items */
  font-size: 0.95em;
  line-height: 1.5;
}

.why-choose-list li::before {
  content: "\2022"; /* Unicode for bullet character • */
  color: #146432; /* Green bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.1em; /* Align with text */
  position: absolute;
  left: 10px;
  top: 0;
}

.why-choose-us-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.before-after-image-pair {
  display: flex;
  gap: 10px;
}

.image-container {
  position: relative;
  flex: 1;
  border-radius: 8px; /* Rounded corners for images */
  overflow: hidden; /* To ensure labels stay within rounded corners if needed */
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Rounded corners for images */
}

.image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #33b249; /* Moss Green */
  color: white;
  padding: 5px 10px;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 4px;
}

/* Testimonial Box within Why Choose Us */
.testimonial-box-why-choose {
  background-color: #f9f9f9; /* Light grey background */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-top: 20px;
}

.testimonial-author-details-why-choose {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative; /* For the info icon */
}

.author-avatar-why-choose {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #146432; /* Green background */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 12px;
}

.author-info-why-choose {
  flex-grow: 1;
}

.author-name-why-choose {
  font-weight: bold;
  display: block;
  font-size: 1em;
  color: #222222;
}

.author-meta-why-choose {
  font-size: 0.85em;
  color: #777777;
}

.author-time-why-choose {
  font-size: 0.85em;
  color: #777777;
  text-align: right;
}

.stars-why-choose {
  color: #ffd700; /* Gold for stars */
  margin-right: 5px;
}

.testimonial-source-icon-why-choose {
  font-size: 1.1em;
  color: #aaaaaa; /* Light grey for info icon */
  margin-left: 10px;
}

.testimonial-text-why-choose {
  font-size: 0.9em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0; /* Remove default p margin if it_s the last element */
}

/* Responsive adjustments for Why Choose Us */
@media (max-width: 992px) {
  .why-choose-us-grid {
    flex-direction: column;
  }
  .why-choose-us-left h2 {
    text-align: center; /* Center heading when stacked */
  }
}

@media (max-width: 768px) {
  .why-choose-us-left h2 {
    font-size: 1.8em;
  }
  .why-choose-list li {
    font-size: 0.9em;
  }
  .testimonial-box-why-choose {
    padding: 15px;
  }
  .author-avatar-why-choose {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
  .author-name-why-choose {
    font-size: 0.95em;
  }
  .author-meta-why-choose,
  .author-time-why-choose {
    font-size: 0.8em;
  }
  .testimonial-text-why-choose {
    font-size: 0.85em;
  }
  .before-after-image-pair {
    flex-direction: column; /* Stack before/after images on smaller screens */
  }
  .image-container {
    margin-bottom: 10px; /* Add space when stacked */
  }
  .image-container:last-child {
    margin-bottom: 0;
  }
}

/* Hero Accreditation Logos */
.hero-accreditation-logos {
  display: flex;
  justify-content: center; /* Center the logos container */
  align-items: center;
  margin-top: 20px; /* Space above the logos */
  gap: 20px; /* Space between logos */
  position: relative; /* Ensure it's part of the stacking context */
  z-index: 3; /* Ensure it's above the overlay */
}

.hero-logo {
  height: 40px; /* Adjust size as needed */
  width: auto;
  opacity: 1; /* Full opacity to ensure visibility */
}

/* New Testimonial Card Styles */
.testimonial-card-grid {
  display: grid;
  grid-template-columns: 1fr; /* Each testimonial takes full width initially */
  gap: 30px; /* Space between testimonial cards */
}

.testimonial-card-modern {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden; /* Ensure rounded corners are respected by children */
}

.testimonial-card-modern-content {
  padding: 25px;
  flex: 1; /* Takes up available space */
  display: flex;
  flex-direction: column;
}

.testimonial-card-modern-content h3 {
  font-size: 1.4em;
  color: #222222;
  margin-top: 0;
  margin-bottom: 15px;
}

.testimonial-text-modern {
  font-size: 0.95em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1; /* Allows text to take up space before author details */
}

.testimonial-author-details-modern {
  display: flex;
  align-items: center;
  margin-top: auto; /* Pushes to the bottom of the content area */
}

.author-initial-badge {
  position: relative;
  margin-right: 12px;
}

.initial-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #146432; /* Dark Green from site */
  color: #ffffff;
  font-size: 1.6em;
  font-weight: bold;
}

.google-g-logo-testimonial {
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.author-info-modern {
  flex-grow: 1;
}

.author-name-modern {
  font-weight: bold;
  font-size: 1em;
  color: #222222;
  display: block;
}

.author-date-modern {
  font-size: 0.9em;
  color: #777777;
  display: block;
  margin-top: 2px;
}

.author-rating-modern {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.stars-modern {
  color: #ffd700; /* Gold color for stars */
  font-size: 1.1em;
  margin-right: 8px;
}

.verified-badge-modern {
  background-color: #e6f5e8; /* Light green from reference */
  color: #33b249; /* Moss green text */
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
}

.testimonial-card-modern-image {
  flex-basis: 300px; /* Fixed width for the image container */
  min-width: 250px; /* Minimum width to prevent too much squishing */
  max-width: 40%; /* Max width relative to card */
}

.testimonial-card-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area without distortion */
}

/* Responsive adjustments for modern testimonials */
@media (max-width: 768px) {
  .testimonial-card-modern {
    flex-direction: column;
  }
  .testimonial-card-modern-image {
    flex-basis: 200px; /* Adjust height for stacked layout */
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card-modern-content h3 {
    font-size: 1.2em;
  }
  .testimonial-text-modern {
    font-size: 0.9em;
  }
  .author-initial-badge {
    margin-right: 10px;
  }
  .initial-circle {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
  .google-g-logo-testimonial {
    width: 16px;
    height: 16px;
  }
}

/* Image Comparison Slider CSS */
.image-comparison-slider {
  position: relative;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures images cover the area, might crop */
}

.image-after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%; /* Initial position of the slider */
  object-fit: cover; /* Ensures images cover the area, might crop */
  object-position: left; /* Important for after image */
  overflow: hidden;
  border-right: 3px solid #fff; /* Slider line color */
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%; /* Initial position, controlled by JS */
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #333;
}

.comparison-handle::before {
  left: 12px;
}

.comparison-handle::after {
  right: 12px;
}

/* Ensure images are same dimensions for best effect */
.image-before,
.image-after {
  max-height: 400px; /* Or a fixed height if preferred */
}

/* Before/After Slider Styles */
.image-comparison-slider {
  position: relative;
  width: 100%;
  max-width: 500px; /* Or adjust as needed */
  height: 350px; /* Fixed height to ensure images are same size when covered */
  margin: 20px auto;
  overflow: hidden; /* Important for the effect */
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will make images cover the area, cropping if necessary */
  object-position: center; /* Center the image within its box */
}

.image-after {
  /* width will be controlled by JS */
  z-index: 2; /* After image on top */
}

.image-before {
  z-index: 1; /* Before image below */
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%; /* JS will update this */
  transform: translate(-50%, -50%);
  width: 44px; /* Slightly larger for touch */
  height: 44px;
  background-color: rgba(
    33,
    150,
    243,
    0.85
  ); /* Blue handle with slight transparency */
  border-radius: 50%;
  cursor: ew-resize;
  z-index: 10; /* Above images */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: 2px solid white; /* White border for better visibility */
}

/* Central vertical line in the handle */
.comparison-handle div {
  width: 2px;
  height: 22px; /* Shorter line within the circle */
  background-color: white;
}

/* Arrows using pseudo-elements ::before and ::after */
.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  top: 50%;
  transform: translateY(-50%);
}

/* Left arrow */
.comparison-handle::before {
  border-width: 7px 9px 7px 0; /* Triangle pointing left */
  border-color: transparent white transparent transparent;
  left: 5px; /* Position inside the handle */
}

/* Right arrow */
.comparison-handle::after {
  border-width: 7px 0 7px 9px; /* Triangle pointing right */
  border-color: transparent transparent transparent white;
  right: 5px; /* Position inside the handle */
}

/* Roof Washing Gallery Styles */
.roof-washing-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between main image and the grid */
}

.gallery-image {
  width: 100%;
  height: auto;
  border-radius: 6px; /* Consistent rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.main-gallery-image {
  /* The main image will take full width by default due to .gallery-image styles */
  max-height: 450px; /* Optional: constrain max height for very large images */
  object-fit: cover;
}

.additional-images-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(150px, 1fr)
  ); /* Responsive grid for additional images */
  gap: 15px; /* Space between additional images */
}

.additional-gallery-image {
  /* Styles from .gallery-image are inherited */
  height: 120px; /* Example fixed height for smaller images, adjust as needed */
  object-fit: cover; /* Ensure images fill the space nicely */
}

/* Responsive adjustments for the gallery if needed */
@media (max-width: 768px) {
  .additional-images-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(120px, 1fr)
    ); /* Smaller min size on tablets */
  }
  .additional-gallery-image {
    height: 100px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .additional-images-grid {
    grid-template-columns: 1fr; /* Stack images on very small screens */
  }
  .additional-gallery-image {
    height: auto; /* Allow height to adjust based on width for stacked images */
    max-height: 200px; /* Optional max height for stacked images */
  }
}

/* Roof Washing Gallery 2x2 Styles */
.roof-washing-gallery-2x2 {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between rows */
}

.gallery-row {
  display: flex;
  gap: 10px; /* Space between images in a row */
}

.gallery-image-2x2 {
  width: 50%; /* Each image takes half the row width */
  height: auto;
  aspect-ratio: 4 / 3; /* Maintain a consistent aspect ratio, adjust as needed */
  object-fit: cover; /* Ensure images fill the space nicely without distortion */
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer; /* Indicate images are clickable */
  transition: transform 0.2s ease-in-out;
}

.gallery-image-2x2:hover {
  transform: scale(1.03);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 60px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh; /* Max height relative to viewport height */
  animation-name: lightboxZoom;
  animation-duration: 0.6s;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

#lightboxCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 50px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive adjustments for the 2x2 gallery */
@media (max-width: 600px) {
  .gallery-row {
    flex-direction: column; /* Stack images in a row on smaller screens */
  }
  .gallery-image-2x2 {
    width: 100%; /* Full width when stacked */
    margin-bottom: 10px; /* Add some space when stacked */
  }
  .gallery-row:last-child .gallery-image-2x2:last-child {
    margin-bottom: 0;
  }
}

/* CTA Buttons for Roof Washing Section */
.roof-washing-ctas {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on small screens by default */
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center; /* Center buttons when stacked */
}

.roof-washing-ctas .cta-button-phone,
.roof-washing-ctas .cta-button-quote {
  display: inline-flex; /* Use inline-flex for icon and text alignment */
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em; /* Adjust as needed */
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%; /* Full width when stacked */
  max-width: 320px; /* Max width for larger buttons */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.roof-washing-ctas .cta-button-phone i,
.roof-washing-ctas .cta-button-quote i {
  margin-right: 10px; /* Space between icon and text */
}

.roof-washing-ctas .cta-button-phone {
  background-color: #28a745; /* Green color, adjust to match site */
  color: white;
  border: 2px solid #28a745;
}

.roof-washing-ctas .cta-button-phone:hover {
  background-color: #218838; /* Darker green on hover */
  border-color: #1e7e34;
  transform: translateY(-2px);
}

.roof-washing-ctas .cta-button-quote {
  background-color: #007bff; /* Blue color, adjust to match site */
  color: white;
  border: 2px solid #007bff;
}

.roof-washing-ctas .cta-button-quote:hover {
  background-color: #0056b3; /* Darker blue on hover */
  border-color: #004085;
  transform: translateY(-2px);
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .roof-washing-ctas {
    flex-direction: row; /* Place buttons side-by-side on larger screens */
    justify-content: center; /* Center buttons in the row */
  }
  .roof-washing-ctas .cta-button-phone,
  .roof-washing-ctas .cta-button-quote {
    width: auto; /* Auto width for side-by-side buttons */
    min-width: 280px; /* Minimum width to maintain appearance */
  }
}

/* Service Area Location Details & CTAs */
#service-area-marlow .location-details {
  margin-top: 20px;
  margin-bottom: 20px;
}

#service-area-marlow .postcodes-served,
#service-area-marlow .suburbs-served {
  margin-bottom: 15px;
}

#service-area-marlow .postcodes-served h4,
#service-area-marlow .suburbs-served h4 {
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #333;
}

#service-area-marlow .postcodes-served ul,
#service-area-marlow .suburbs-served ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

#service-area-marlow .postcodes-served ul li,
#service-area-marlow .suburbs-served ul li {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

#service-area-marlow .service-area-ctas {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#service-area-marlow .service-area-ctas .cta-button {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
  font-size: 1em;
  border: 2px solid transparent;
  text-align: center;
}

#service-area-marlow .service-area-ctas .cta-button i {
  margin-right: 8px;
}

#service-area-marlow .service-area-ctas .service-area-quote-btn {
  background-color: #28a745; /* Green */
  color: white;
}

#service-area-marlow .service-area-ctas .service-area-quote-btn:hover {
  background-color: #218838; /* Darker green */
}

#service-area-marlow .service-area-ctas .service-area-call-btn {
  background-color: white;
  color: #333;
  border: 2px solid #ccc;
}

#service-area-marlow .service-area-ctas .service-area-call-btn:hover {
  background-color: #f8f9fa;
  border-color: #bbb;
}

@media (max-width: 768px) {
  #service-area-marlow .service-area-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  #service-area-marlow .service-area-ctas .cta-button {
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  #service-area-marlow .service-area-ctas .cta-button:last-child {
    margin-bottom: 0;
  }
}

#service-area-marlow .map-container {
  margin-bottom: 20px;
  width: 100%;
}

#service-area-marlow .map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Service Area Location Accordions */
#service-area-marlow .location-accordion {
  background-color: #f8f9fa;
  color: #333;
  font-weight: 600;
  padding: 12px 15px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: left;
  width: 100%;
  position: relative;
}

#service-area-marlow .location-accordion:after {
  content: "\002B"; /* Plus sign */
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 1.2em;
}

#service-area-marlow .location-accordion.active:after {
  content: "\2212"; /* Minus sign */
}

#service-area-marlow .location-accordion:hover {
  background-color: #e9ecef;
}

#service-area-marlow .location-accordion.active {
  background-color: #e9ecef;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

#service-area-marlow .location-details .accordion-panel {
  padding: 0 15px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#service-area-marlow .location-details .accordion-panel ul {
  margin: 0;
  padding-left: 20px;
}

#service-area-marlow .location-details .accordion-panel li {
  margin: 8px 0;
  color: #555;
}

#service-area-marlow .location-details {
  margin-bottom: 20px;
}

/* Payment and Guarantee Section */
#payment-guarantee {
  background-color: #f9f9f9; /* Light grey background, same as testimonials */
  padding: 40px 0; /* Consistent padding with other sections */
}

#payment-guarantee .two-column-layout {
  display: flex;
  flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
  gap: 30px; /* Increased space between cards */
}

#payment-guarantee .column {
  flex: 1; /* Each column takes equal space */
  min-width: 300px; /* Minimum width before wrapping */
  background-color: #ffffff; /* White background for card */
  padding: 25px; /* Increased padding for card appearance */
  box-sizing: border-box;
  border-radius: 8px; /* Rounded corners like testimonials */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow like testimonials, slightly less intense */
  text-align: center; /* Center content within cards */
}

#payment-guarantee .green-heading {
  color: #28a745; /* Or your site's specific green */
  font-weight: bold;
  margin-bottom: 10px;
}

#payment-guarantee .payment-logo {
  max-width: 200px; /* Adjust as needed */
  height: auto;
  margin: 15px 0;
  display: block; /* For centering if needed, or adjust alignment */
}

#payment-guarantee .guarantee-badge {
  max-width: 180px; /* Adjust as needed */
  height: auto;
  margin: 15px 0;
  display: block; /* For centering if needed, or adjust alignment */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  #payment-guarantee .two-column-layout {
    flex-direction: column;
  }
  #payment-guarantee .column {
    min-width: 100%; /* Full width on smaller screens */
  }
  #payment-guarantee .payment-logo,
  #payment-guarantee .guarantee-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Payment and Guarantee Section - Background Update */
#payment-guarantee {
  background-color: #f9f9f9; /* Match testimonial card background, used as section background here */
}

/* Payment and Guarantee Section - Info Card Styles */
#payment-guarantee .two-column-layout .column {
  background-color: #ffffff; /* White background for cards to contrast with section's grey */
  padding: 25px; /* Slightly more padding for a cleaner look */
  border-radius: 8px; /* Match testimonial card radius */
  border: 1px solid #e0e0e0; /* Match testimonial card border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow like modern testimonials */
  margin-bottom: 20px; /* Add some space if they stack on mobile */
}

/* Ensure columns in the two-column-layout have some gap */
#payment-guarantee .two-column-layout {
  display: flex;
  gap: 30px; /* Add gap between the two cards */
}

/* Responsive adjustments for the payment-guarantee cards */
@media (max-width: 768px) {
  #payment-guarantee .two-column-layout {
    flex-direction: column;
    gap: 20px; /* Adjust gap for stacked view */
  }
  #payment-guarantee .two-column-layout .column {
    margin-bottom: 0; /* Remove bottom margin as gap handles spacing */
  }
  #payment-guarantee .two-column-layout .column:last-child {
    margin-bottom: 0;
  }
}

/* Sticky Conversion Bar Styles */
#sticky-conversion-bar {
  position: fixed;
  top: -100px; /* Initially hidden off-screen */
  left: 0;
  width: 100%;
  background-color: #146432; /* Dark Green from top-bar */
  padding: 10px 0;
  z-index: 1000; /* Ensure it's above other content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: top 0.3s ease-in-out;
  text-align: center; /* Center buttons if they don't fill width */
}

#sticky-conversion-bar.sticky-conversion-bar-visible {
  top: 0; /* Slide in from top */
}

#sticky-conversion-bar .container {
  display: flex;
  justify-content: center; /* Center buttons in the container */
  align-items: center;
  gap: 15px; /* Space between buttons */
}

.sticky-call-btn,
.sticky-quote-btn {
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 0.9em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sticky-call-btn {
  background-color: #33b249; /* Light Moss Green */
}

.sticky-call-btn:hover {
  background-color: #288a3a; /* Darker Light Moss Green */
}

.sticky-quote-btn {
  background-color: #ff8c00; /* Orange from hero form CTA */
}

.sticky-quote-btn:hover {
  background-color: #e67e00; /* Darker Orange */
}

/* Responsive adjustments for sticky bar buttons if needed */
@media (max-width: 480px) {
  #sticky-conversion-bar .container {
    flex-direction: column; /* Stack buttons on very small screens */
    gap: 8px;
  }
  .sticky-call-btn,
  .sticky-quote-btn {
    width: 80%; /* Make buttons take more width when stacked */
    max-width: 280px;
    font-size: 0.85em;
    padding: 8px 15px;
  }
}

/* Sticky Conversion Bar Styles */
#sticky-conversion-bar {
  position: fixed;
  top: -150px; /* Initially hidden off-screen, increased to accommodate potentially taller bar */
  left: 0;
  width: 100%;
  background-color: #146432; /* Dark Green from top-bar */
  padding: 10px 0;
  z-index: 1000; /* Ensure it's above other content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: top 0.3s ease-in-out;
  text-align: center;
}

#sticky-conversion-bar.sticky-conversion-bar-visible {
  top: 0; /* Slide in from top */
}

#sticky-conversion-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Adjusted gap for more items */
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.sticky-call-btn,
.sticky-quote-btn {
  padding: 8px 15px; /* Slightly reduced padding for better fit with more items */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 0.85em; /* Slightly reduced font size */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.sticky-call-btn {
  background-color: #33b249; /* Light Moss Green */
}

.sticky-call-btn:hover {
  background-color: #288a3a; /* Darker Light Moss Green */
}

.sticky-quote-btn {
  background-color: #ff8c00; /* Orange from hero form CTA */
}

.sticky-quote-btn:hover {
  background-color: #e67e00; /* Darker Orange */
}

.sticky-logos-container {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between logos */
}

.sticky-bar-logo {
  height: 22px; /* Resize logos to be small */
  width: auto;
  max-width: 60px; /* Prevent any single logo from being too wide */
  vertical-align: middle; /* Align logos nicely with text if they were inline */
}

/* Responsive adjustments for sticky bar */
@media (max-width: 768px) {
  /* Adjust breakpoint for more items */
  #sticky-conversion-bar .container {
    gap: 8px;
  }
  .sticky-call-btn,
  .sticky-quote-btn {
    font-size: 0.8em;
    padding: 8px 12px;
  }
  .sticky-bar-logo {
    height: 20px;
  }
}

@media (max-width: 580px) {
  /* Point at which logos might need to be more flexible or buttons stack */
  #sticky-conversion-bar .container {
    flex-direction: column; /* Stack all items */
    gap: 10px;
  }
  .sticky-call-btn,
  .sticky-quote-btn {
    width: 90%;
    max-width: 300px;
    font-size: 0.85em;
  }
  .sticky-logos-container {
    order: -1; /* Optionally move logos above buttons when stacked */
    margin-bottom: 5px; /* Add some space if logos are above */
  }
}

/* Bottom CTA Bar Styles */
.bottom-cta-bar-section {
  background-color: #146432; /* Dark Green - consistent with sticky bar */
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.bottom-cta-bar-section .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1100px; /* Consistent with other sections */
  margin: 0 auto;
}

.bottom-cta-content-left {
  flex-basis: 60%;
  text-align: left;
}

.bottom-cta-content-left h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.bottom-cta-content-left p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0; /* No margin if it's the last element in this column */
}

.bottom-cta-content-right {
  flex-basis: 35%;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Make buttons full width of this container */
  gap: 15px;
}

.bottom-cta-quote-btn,
.bottom-cta-call-btn {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.bottom-cta-quote-btn {
  background-color: #ff8c00; /* Orange - consistent with hero form CTA */
  color: #ffffff;
}

.bottom-cta-quote-btn:hover {
  background-color: #e67e00; /* Darker Orange */
}

.bottom-cta-call-btn {
  background-color: #33b249; /* Light Moss Green - consistent with sticky bar call button */
  color: #000000; /* Black text for better contrast */
}

.bottom-cta-call-btn:hover {
  background-color: #288a3a; /* Darker Light Moss Green */
}

/* Responsive adjustments for Bottom CTA Bar */
@media (max-width: 768px) {
  .bottom-cta-bar-section .container {
    flex-direction: column;
    text-align: center;
  }
  .bottom-cta-content-left,
  .bottom-cta-content-right {
    flex-basis: 100%;
    text-align: center;
  }
  .bottom-cta-content-left h2 {
    font-size: 1.6em;
  }
  .bottom-cta-content-left p {
    font-size: 0.95em;
    margin-bottom: 20px; /* Add space before buttons when stacked */
  }
  .bottom-cta-content-right {
    align-items: center; /* Center buttons when stacked */
  }
  .bottom-cta-quote-btn,
  .bottom-cta-call-btn {
    width: 100%;
    max-width: 320px; /* Max width for stacked buttons */
  }
}

/* Bottom CTA Bar V2 Styles (3-Column) */
.bottom-cta-bar-section-v2 {
  background-color: #146432; /* Dark Green */
  color: #ffffff;
  padding: 40px 20px;
}

.bottom-cta-bar-section-v2 .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.bottom-cta-column {
  flex: 1; /* Distribute space equally by default */
}

.bottom-cta-column-left {
  flex-basis: 30%; /* Adjust as needed */
  text-align: left;
}

.bottom-cta-column-left h2 {
  font-size: 1.6em; /* Slightly smaller to fit if needed */
  margin-bottom: 0;
  line-height: 1.3;
}

.bottom-cta-column-center {
  flex-basis: 35%; /* Adjust as needed */
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bottom-cta-column-center p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0;
}

.bottom-cta-column-right {
  flex-basis: 30%; /* Adjust as needed */
  text-align: left;
}

.bottom-cta-column-right .form-intro-text {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 15px;
}

.bottom-cta-form .form-group {
  margin-bottom: 10px;
}

.bottom-cta-form input[type="text"],
.bottom-cta-form input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc; /* Match hero form style */
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 0.9em;
  background-color: #ffffff; /* Match hero form style */
  color: #333; /* Match hero form style */
}

.bottom-cta-form input[type="text"]::placeholder,
.bottom-cta-form input[type="tel"]::placeholder {
  color: #999; /* Match hero form style */
}

.bottom-cta-call-btn {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  background-color: #33b249; /* Light Moss Green */
  color: #000000; /* Black text for better contrast */
  display: inline-block; /* To control width if needed or for alignment */
  width: auto; /* Or specify width if needed */
}

.bottom-cta-call-btn:hover {
  background-color: #288a3a; /* Darker Light Moss Green */
}

.bottom-cta-submit-btn {
  width: 100%;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  background-color: #ff8c00; /* Orange - consistent with hero form CTA */
  color: #ffffff;
}

.bottom-cta-submit-btn:hover {
  background-color: #e67e00; /* Darker Orange */
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive adjustments for 3-Column Bottom CTA Bar */
@media (max-width: 992px) {
  /* Tablet breakpoint */
  .bottom-cta-bar-section-v2 .container {
    flex-direction: column;
    align-items: center; /* Center items when stacked */
    text-align: center;
  }
  .bottom-cta-column {
    flex-basis: 100% !important; /* Full width for all columns */
    margin-bottom: 20px;
    max-width: 500px; /* Max width for centered content */
  }
  .bottom-cta-column:last-child {
    margin-bottom: 0;
  }
  .bottom-cta-column-left h2,
  .bottom-cta-column-center p,
  .bottom-cta-column-right .form-intro-text {
    text-align: center;
  }
  .bottom-cta-column-center {
    align-items: center; /* Center the button */
  }
}

@media (max-width: 576px) {
  /* Mobile breakpoint */
  .bottom-cta-column-left h2 {
    font-size: 1.4em;
  }
  .bottom-cta-column-center p {
    font-size: 0.95em;
  }
  .bottom-cta-form input[type="text"],
  .bottom-cta-form input[type="tel"],
  .bottom-cta-call-btn,
  .bottom-cta-submit-btn {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

/* === Appended/Corrected CTA Bar Button Styles === */
.bottom-cta-bar .cta-buttons-content {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.bottom-cta-bar .cta-button {
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border-width: 2px;
  border-style: solid;
  border-color: transparent; /* Base, will be overridden by specific button styles */
}

.bottom-cta-bar .cta-quote-btn {
  background-color: #ff8c00; /* High-converting Orange */
  color: #ffffff !important; /* Ensure text color is white */
  border-color: #ff8c00;
}

.bottom-cta-bar .cta-quote-btn:hover {
  background-color: #e67e00; /* Darker Orange */
  transform: translateY(-2px);
}

.bottom-cta-bar .cta-call-btn {
  background-color: #33b249; /* Moss Green */
  color: #ffffff !important; /* Ensure text color is white */
  border-color: #33b249;
}

.bottom-cta-bar .cta-call-btn:hover {
  background-color: #29903b; /* Darker Moss Green */
  transform: translateY(-2px);
}

/* Responsive adjustments for Bottom CTA Bar layout and buttons */
@media (min-width: 769px) {
  .bottom-cta-bar .cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .bottom-cta-bar .cta-text-content {
    flex-basis: 60%;
  }
  .bottom-cta-bar .cta-text-content h2,
  .bottom-cta-bar .cta-text-content p {
    margin-left: 0;
    margin-right: 0;
  }
  .bottom-cta-bar .cta-buttons-content {
    flex-basis: 35%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .bottom-cta-bar .cta-buttons-content .cta-button {
    width: 100%;
    margin-bottom: 10px;
  }
  .bottom-cta-bar .cta-buttons-content .cta-button:last-child {
    margin-bottom: 0;
  }
}
/* === End of Appended/Corrected CTA Bar Button Styles === */

/* === Specific Style for Mid-Page CTA Bar Background === */
#mid-page-cta-bar {
  background-color: #146432 !important; /* Dark Green */
  color: #ffffff !important; /* White text for better contrast on green background */
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 20px; /* Added padding */
  padding-bottom: 20px; /* Added padding */
}

/* Accordion and Service Buttons Section - New Layout (v4 - Invisible Accordion) */
.accordion-services-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.accordion-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Accordion Button Styling - Green with Centered H2 Text */
.accordion-wrapper .accordion-button {
  background-color: #2e7d32; /* Green background */
  color: #ffffff; /* Default text color for button (e.g., for arrow) */
  cursor: pointer;
  padding: 10px 15px;
  width: 100%;
  border: none;
  text-align: left; /* H2 will handle its own centering */
  outline: none;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between; /* Positions H2 (flex-grow) and ::after */
  align-items: center;
  flex-grow: 1;
  min-height: 45px;
}

.accordion-wrapper .accordion-button h2 {
  color: #ffffff; /* White text for H2 */
  font-size: 1em; /* Adjust as needed, relative to button's font-size */
  margin: 0; /* Remove default H2 margins */
  flex-grow: 1; /* Allows H2 to take up space */
  text-align: center; /* Center the text within H2 */
}

.accordion-wrapper .accordion-button:hover {
  background-color: #246327; /* Darker Green on hover */
}

.accordion-wrapper .accordion-button.active {
  background-color: #246327; /* Darker Green when active */
}

.accordion-wrapper .accordion-button::after {
  content: none; /* Remove arrow */
}

.accordion-wrapper .accordion-button.active::after {
  content: none; /* Remove arrow when active */
}

.accordion-wrapper .accordion-panel {
  padding: 15px;
  background-color: #2e7d32; /* Panel background changed to green */
  color: #ffffff; /* Panel text changed to white */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  border: 1px solid #246327; /* Darker green border, or remove if not needed */
  border-top: none;
  border-radius: 0 0 5px 5px;
  width: 100%;
  box-sizing: border-box;
}

.accordion-wrapper .accordion-panel.active {
  max-height: 500px;
  padding: 15px;
}

/* Service buttons remain green */
.service-buttons-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}

.service-jump-button {
  flex: 1;
  padding: 10px 15px; /* Reduced padding for slimmer button */
  background-color: #2e7d32; /* Green */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1em; /* Slightly reduced font size for slimmer button */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px; /* Reduced min-height for slimmer button */
}

.service-jump-button:hover {
  background-color: #246327; /* Darker Green */
}

@media (max-width: 768px) {
  .accordion-services-container {
    flex-direction: column;
  }

  .accordion-wrapper {
    width: 100%;
    margin-bottom: 15px;
    flex: none;
  }

  .service-buttons-wrapper {
    flex-direction: column;
    width: 100%;
    flex: none;
  }
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Ensure mobile-nav positions relative to this */
  }
}

/* Hamburger Menu Styles */
.hamburger-menu {
  /* This is the div wrapping the button */
  display: flex;
  align-items: center;
  margin-left: 15px; /* Space next to phone number */
}

.hamburger-icon {
  /* This is the button */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Use space-between for more distinct spacing */
  width: 30px;
  height: 21px; /* 3px per line * 3 lines + 2 * 3px space between = 15px. Let's try 21px for 3px lines and 6px gaps. */
  outline: none;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #222222; /* Ensure this color is visible */
  border-radius: 1px; /* Slight rounding */
  transition: all 0.3s ease-in-out;
}

/* Animation for active state (X icon) */
.hamburger-icon.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg); /* Adjusted for 3px height and 6px gap */
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg); /* Adjusted */
}

/* Mobile Navigation Styles */
.mobile-nav {
  /* This is the div with id="mobile-menu" */
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position below the .main-header .container's top edge + its height */
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0; /* Lighter border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000; /* Ensure it's above other content */
  width: 220px; /* Slightly wider */
  padding: 0;
}

.mobile-nav.active {
  display: block; /* Show when active */
}

.mobile-nav ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
  margin: 0;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333333;
  font-weight: normal; /* Normal weight, can be bolded if preferred */
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
}

.mobile-nav ul li a:hover {
  background-color: #f5f5f5;
  color: #146432; /* Green hover text */
}
/* End of Hamburger Menu Styles */
/* Sticky Conversion Bar Styles */
.sticky-conversion-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #146432; /* Dark Green to match site theme */
  color: #ffffff;
  padding: 10px 0;
  z-index: 1000; /* Ensure it stays above other content */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%); /* Start off-screen */
}

.sticky-conversion-bar.sticky-visible {
  transform: translateY(0); /* Slide in from top */
}

.sticky-conversion-bar-hidden {
  transform: translateY(-100%); /* Hide off-screen */
}

.sticky-conversion-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-logos-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-bar-logo {
  height: 30px;
  width: auto;
}

.cta-button {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.sticky-call-btn {
  background-color: #33b249; /* Moss Green */
  color: #ffffff;
}

.sticky-call-btn:hover {
  background-color: #2a9a3e; /* Darker shade on hover */
}

.sticky-quote-btn {
  background-color: #ff8c00; /* High-converting Orange */
  color: #ffffff;
}

.sticky-quote-btn:hover {
  background-color: #e67e00; /* Darker Orange on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .sticky-logos-container {
    display: none; /* Hide logos on medium screens */
  }

  .sticky-conversion-bar .container {
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .sticky-conversion-bar {
    padding: 8px 0;
  }

  .cta-button {
    padding: 6px 12px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .sticky-conversion-bar .container {
    flex-direction: column;
    gap: 8px;
  }

  .cta-button {
    width: 100%;
    margin: 2px 0;
  }
}

/* ===== CONTAINER WIDTH FIXES ===== */
html body .container,
html body div.container,
html body section .container,
html body main .container,
html body header .container,
html body footer .container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 769px) {
  .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  section,
  .content-section,
  .hero-section,
  .main-header,
  .top-bar,
  footer,
  .site-footer,
  .footer-cta-section {
    width: 100% !important;
  }

  @media (min-width: 1400px) {
    body {
      background-color: #f5f5f5 !important;
    }

    .page-wrapper,
    .site-wrapper,
    #wrapper,
    main {
      max-width: 1400px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      background-color: #fff !important;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
    }
  }
}

/* ===== MOBILE HEADER FIX - Header stays fixed, dropdown appears over content ===== */

@media (max-width: 768px) {
  /* Green underline */
  .main-header:after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #4a8c4a !important;
  }

  /* Header container */
  .main-header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    position: relative !important;
  }

  /* Mobile hamburger positioning */
  .mobile-hamburger {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    z-index: 1002 !important; /* Higher than header */
  }

  /* Mobile dropdown - appears OVER the content below */
  .mobile-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 3px) !important; /* Account for green underline */
    right: 0 !important;
    background-color: white !important;
    min-width: 220px !important;
    max-width: 280px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important; /* Stronger shadow */
    border-radius: 0 0 6px 6px !important; /* Only bottom corners rounded */
    z-index: 1001 !important; /* Above content, below hamburger */
    border: 1px solid #e0e0e0 !important;
    border-top: none !important; /* No top border since it connects to header */
    overflow: hidden !important;
  }

  .mobile-dropdown-menu.show {
    display: block !important;
  }

  /* Ensure dropdown stays within viewport */
  .mobile-dropdown-menu {
    right: 15px !important; /* Match container padding */
  }

  /* Menu items styling */
  .mobile-dropdown-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: white !important;
  }

  .mobile-dropdown-menu ul li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .mobile-dropdown-menu ul li:last-child {
    border-bottom: none !important;
  }

  .mobile-dropdown-menu ul li a {
    display: block !important;
    padding: 15px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    background: white !important;
  }

  .mobile-dropdown-menu ul li a:hover,
  .mobile-dropdown-menu ul li a:active {
    background-color: #f8f9fa !important;
    color: #4a8c4a !important;
  }

  /* Ensure body content starts below fixed header */
  body {
    padding-top: 0 !important; /* Remove any existing padding */
  }

  /* Add space for the sticky header if needed */
  .hero-section,
  .features-bar {
    position: relative !important;
    z-index: 1 !important; /* Below dropdown menu */
  }
}

/* For very small screens, adjust dropdown width */
@media (max-width: 480px) {
  .mobile-dropdown-menu {
    right: 10px !important;
    max-width: calc(100vw - 20px) !important;
  }
}

/* Ensure desktop header remains normal */
@media (min-width: 769px) {
  .main-header {
    position: relative !important; /* Not sticky on desktop */
    top: auto !important;
    box-shadow: none !important;
  }
}
/* ===== LOGO SCALING FIXES ===== */
html body .logo-container .logo {
  height: 109px !important;
  width: auto !important;
}

html body header .logo-container .logo,
html body .main-header .logo-container .logo {
  height: 109px !important;
  width: auto !important;
}

@media (max-width: 768px) {
  html body .logo-container .logo,
  html body header .logo-container .logo,
  html body .main-header .logo-container .logo {
    height: 77px !important;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  html body .logo-container .logo,
  html body header .logo-container .logo,
  html body .main-header .logo-container .logo {
    height: 63px !important;
    width: auto !important;
  }
}

html body .logo-container {
  height: auto !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
}

html body .logo-container .logo {
  max-width: none !important;
  max-height: 109px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ===== ACCREDITATION LOGOS ===== */
.hero-accreditation-logos img,
img[src*="ipaf_logo.png"],
img[src*="pasma-logo.png"],
img[src*="iosh_logo.png"] {
  width: auto !important;
  height: auto !important;
  max-width: 100px !important;
  max-height: 60px !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .hero-accreditation-logos img,
  img[src*="ipaf_logo.png"],
  img[src*="pasma-logo.png"],
  img[src*="iosh_logo.png"] {
    max-width: 70px !important;
    max-height: 45px !important;
  }
}

@media (max-width: 480px) {
  .hero-accreditation-logos img,
  img[src*="ipaf_logo.png"],
  img[src*="pasma-logo.png"],
  img[src*="iosh_logo.png"] {
    max-width: 60px !important;
    max-height: 40px !important;
  }
}

.hero-accreditation-logos {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  width: 100% !important;
  margin: 15px auto !important;
}

/* ===== FEATURES BAR MOBILE FIX ===== */
@media (max-width: 768px) {
  .features-bar {
    padding: 15px 0 !important;
  }

  .features-bar .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }

  .feature-item {
    display: flex !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 8px 5px !important;
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }

  .feature-item .checkmark {
    color: #4a8c4a !important;
    font-size: 1.2rem !important;
    margin-right: 5px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .feature-item {
    font-size: 0.8rem !important;
    padding: 6px 4px !important;
  }

  .features-bar .container {
    gap: 8px !important;
  }
}

/* ===== GREEN ACCORDION HEADINGS ===== */
.location-accordion {
  background-color: #4a8c4a !important;
  color: white !important;
  padding: 15px 20px !important;
  width: 100% !important;
  text-align: left !important;
  font-weight: bold !important;
  border: none !important;
  border-radius: 4px !important;
  margin-bottom: 5px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  position: relative !important;
}

.location-accordion:hover {
  background-color: #3a7c3a !important;
}

.location-accordion.active {
  background-color: #3a7c3a !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin-bottom: 0 !important;
}

.location-accordion::after {
  content: "\002B" !important;
  color: white !important;
  font-weight: bold !important;
  float: right !important;
  margin-left: 5px !important;
  font-size: 18px !important;
}

.location-accordion.active::after {
  content: "\2212" !important;
}

.location-accordion + .accordion-panel {
  border: 1px solid #e8e8e8 !important;
  border-top: none !important;
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  margin-bottom: 5px !important;
  padding: 15px 20px !important;
  background-color: white !important;
}

.location-accordion + .accordion-panel ul {
  margin: 0 !important;
  padding-left: 20px !important;
}

.location-accordion + .accordion-panel li {
  margin-bottom: 5px !important;
}

@media (max-width: 768px) {
  .location-accordion {
    padding: 12px 15px !important;
    font-size: 16px !important;
  }

  .location-accordion + .accordion-panel {
    padding: 12px 15px !important;
  }
}

/* ===== MOBILE LAYOUT FIXES ===== */
@media (max-width: 768px) {
  #service-area-marlow.content-section.with-image .container {
    display: block !important;
    grid-template-columns: unset !important;
    grid-template-rows: auto !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  #service-area-marlow.content-section.with-image .container > .text-content,
  #service-area-marlow.content-section.with-image .container > .image-content {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    grid-column: 1 / -1 !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    clear: both !important;
  }

  #service-area-marlow.content-section.with-image .container > .text-content {
    margin-bottom: 20px !important;
  }

  #service-area-marlow .map-container {
    width: 100% !important;
    height: auto !important;
  }

  #service-area-marlow .map-container iframe {
    width: 100% !important;
    height: 300px !important;
  }

  #service-area-marlow .location-details {
    width: 100% !important;
    margin-top: 15px !important;
  }
}

/* ===== ROOF WASHING GALLERY 2X2 ===== */
@media (max-width: 768px) {
  #roof-cleaning-washing .image-content.roof-washing-gallery-2x2 {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .roof-washing-gallery-2x2 .gallery-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .roof-washing-gallery-2x2 .gallery-image-2x2 {
    width: calc(50% - 4px) !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin: 0 !important;
  }

  .roof-washing-gallery-2x2 img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
  }

  #roof-cleaning-washing .text-content {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .roof-washing-gallery-2x2 .gallery-row {
    gap: 5px !important;
    margin-bottom: 5px !important;
  }
}

/* ===== ROOF MOSS REMOVAL IMAGE FIX ===== */
@media (max-width: 768px) {
  #gutter-cleaning .image-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 200px !important;
    overflow: visible !important;
  }

  #gutter-cleaning .image-comparison-slider {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #gutter-cleaning .image-comparison-slider img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
  }

  #gutter-cleaning .image-comparison-slider .image-before {
    display: none !important;
  }

  #gutter-cleaning .image-comparison-slider .image-after {
    display: block !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }

  #gutter-cleaning .comparison-handle {
    display: none !important;
  }

  #gutter-cleaning .image-comparison-slider::after {
    content: "After Cleaning" !important;
    display: block !important;
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 5px 10px !important;
    font-size: 14px !important;
    border-radius: 3px !important;
  }
}

/* ===== SINGLE COLUMN SECTIONS ON MOBILE ===== */
@media (max-width: 768px) {
  #gutter-cleaning.content-section.with-image .container,
  #roof-cleaning-washing.content-section.with-image .container,
  #service-area.content-section.with-image .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  #gutter-cleaning.content-section.with-image .container > div,
  #roof-cleaning-washing.content-section.with-image .container > div,
  #service-area.content-section.with-image .container > div {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #gutter-cleaning.content-section.with-image .container,
  #roof-cleaning-washing.content-section.with-image .container,
  #service-area.content-section.with-image .container {
    grid-template-columns: 1fr !important;
  }

  .content-section.with-image .text-content,
  .content-section.with-image .image-content {
    margin-bottom: 20px !important;
  }

  .roof-washing-gallery-2x2 {
    width: 100% !important;
  }

  .image-comparison-slider,
  .roof-washing-gallery-2x2 img,
  .content-section.with-image img {
    max-width: 100% !important;
    height: auto !important;
  }

  #roof-cleaning-washing.content-section.with-image .container {
    direction: ltr !important;
  }

  #roof-cleaning-washing.content-section.with-image .container > div {
    order: initial !important;
  }

  #gutter-cleaning .text-content,
  #roof-cleaning-washing .text-content,
  #service-area .text-content {
    order: 1 !important;
  }

  #gutter-cleaning .image-content,
  #roof-cleaning-washing .image-content,
  #service-area .image-content {
    order: 2 !important;
  }
}

@media (max-width: 480px) {
  #gutter-cleaning.content-section.with-image .container,
  #roof-cleaning-washing.content-section.with-image .container,
  #service-area.content-section.with-image .container {
    padding: 0 !important;
  }

  .content-section.with-image .text-content,
  .content-section.with-image .image-content {
    padding: 0 10px !important;
  }
}

/* ===== HAMBURGER MENU CSS - FINAL FIX ===== */

/* Base hamburger icon styles - REMOVED all: unset */
.hamburger-icon {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 30px !important;
  height: 20px !important;
  cursor: pointer !important;
  padding: 2px 0 !important;
  box-sizing: border-box !important;
}

.hamburger-icon span {
  display: block !important;
  width: 100% !important;
  height: 3px !important;
  background-color: #333 !important;
  border-radius: 1px !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

/* Desktop hamburger container */
.desktop-hamburger {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  z-index: 1001 !important;
  cursor: pointer !important;
}

/* Desktop dropdown menu */
.dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  background-color: white !important;
  min-width: 200px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 6px !important;
  z-index: 1000 !important;
  border: 1px solid #e0e0e0 !important;
  overflow: hidden !important;
}

.dropdown-menu.show {
  display: block !important;
}

/* Mobile hamburger container */
.mobile-hamburger {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  z-index: 1001 !important;
  cursor: pointer !important;
}

/* ===== MOBILE HAMBURGER SCROLL FIX - Replace the mobile dropdown CSS with this ===== */

/* Mobile Dropdown Menu - Fixed for Scroll Issues */
.mobile-dropdown-menu {
  display: none;
  position: absolute !important; /* Make sure it's absolute, not fixed */
  top: 100% !important;
  right: 0 !important;
  background-color: white !important;
  min-width: 220px !important;
  max-width: 300px !important; /* Fixed max-width instead of vw */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 6px !important;
  z-index: 1000 !important;
  border: 1px solid #e0e0e0 !important;
  overflow: visible !important; /* Changed from hidden to visible */
  margin-top: 10px !important;
}

.mobile-dropdown-menu.show {
  display: block !important;
}

/* Ensure mobile hamburger container doesn't interfere with scroll */
.mobile-hamburger {
  position: relative !important; /* Not fixed */
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  z-index: 1001 !important;
}

/* Fix for mobile body scroll - ensure no interference */
@media (max-width: 768px) {
  /* Prevent any overflow issues on mobile */
  .main-header {
    position: relative !important; /* Not fixed */
    overflow: visible !important;
  }

  .main-header .container {
    overflow: visible !important;
    position: relative !important;
  }

  /* Make sure dropdown doesn't create scroll issues */
  .mobile-dropdown-menu {
    position: absolute !important;
    /* Remove any viewport units that might cause issues */
    width: auto !important;
    min-width: 200px !important;
    max-width: 280px !important;
  }

  /* Ensure body can still scroll when menu is open */
  body {
    overflow-x: hidden !important; /* Hide horizontal scroll */
    overflow-y: auto !important; /* Allow vertical scroll */
  }

  /* Make sure the dropdown doesn't extend beyond viewport */
  .mobile-dropdown-menu {
    right: 15px !important; /* Match container padding */
    left: auto !important;
  }
}

/* Alternative positioning for very small screens */
@media (max-width: 480px) {
  .mobile-dropdown-menu {
    right: 10px !important;
    max-width: calc(100vw - 40px) !important; /* Account for margins */
  }
}

/* Ensure clicking menu items doesn't break scroll */
.mobile-dropdown-menu ul li a {
  display: block !important;
  padding: 15px 20px !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  background: white !important;
  /* Ensure links don't interfere with touch scrolling */
  touch-action: manipulation !important;
}

.mobile-dropdown-menu ul li a:hover,
.mobile-dropdown-menu ul li a:active {
  background-color: #f8f9fa !important;
  color: #4a8c4a !important;
}

/* Dropdown menu lists */
.dropdown-menu ul,
.mobile-dropdown-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: white !important;
}

.dropdown-menu ul li,
.mobile-dropdown-menu ul li {
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.dropdown-menu ul li:last-child,
.mobile-dropdown-menu ul li:last-child {
  border-bottom: none !important;
}

.dropdown-menu ul li a,
.mobile-dropdown-menu ul li a {
  display: block !important;
  padding: 12px 20px !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  background: white !important;
}

.dropdown-menu ul li a:hover,
.mobile-dropdown-menu ul li a:hover,
.mobile-dropdown-menu ul li a:active {
  background-color: #f8f9fa !important;
  color: #4a8c4a !important;
}

/* Mobile specific styles */
.mobile-dropdown-menu ul li a {
  padding: 15px 20px !important;
  font-size: 16px !important;
}

/* Responsive display rules */
@media (min-width: 769px) {
  .desktop-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-hamburger {
    display: none !important;
  }

  .mobile-dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-hamburger {
    display: none !important;
  }

  .dropdown-menu {
    display: none !important;
  }

  .mobile-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }

  /* Force mobile hamburger to stay visible */
  .mobile-hamburger,
  .mobile-hamburger .hamburger-icon,
  .mobile-hamburger .hamburger-icon span {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }

  .mobile-hamburger .hamburger-icon span {
    display: block !important;
  }
}

/* Ensure hamburger icons don't get hidden by other styles */
html body .hamburger-icon,
html body .desktop-hamburger .hamburger-icon,
html body .mobile-hamburger .hamburger-icon {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body .hamburger-icon span,
html body .desktop-hamburger .hamburger-icon span,
html body .mobile-hamburger .hamburger-icon span {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fix for any potential z-index conflicts */
.desktop-hamburger,
.mobile-hamburger {
  z-index: 1001 !important;
}

.dropdown-menu,
.mobile-dropdown-menu {
  z-index: 1000 !important;
}

/* ===== HEADER STYLES - FIXED VERSION ===== */

/* Top bar */
.top-bar {
  background-color: #4a8c4a;
  color: white;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main header */
.main-header {
  background-color: white;
  padding: 15px 0;
  position: relative;
}

.main-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4a8c4a;
}

/* DESKTOP HEADER LAYOUT */
@media (min-width: 769px) {
  .main-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    flex-wrap: nowrap !important;
  }

  /* Logo container - left side */
  .logo-container {
    flex: 0 0 auto !important;
    margin-right: auto !important;
    order: 1 !important;
  }

  .logo-container .logo {
    height: 78px !important;
    width: auto !important;
  }

  /* Right-aligned elements container */
  .header-right-elements {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 30px !important;
    flex: 0 1 auto !important;
    order: 2 !important;
  }

  /* Google Reviews styling */
  .desktop-google-reviews {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .desktop-google-reviews .google-logo-container {
    display: flex !important;
    align-items: center !important;
    margin-right: 15px !important;
  }

  .desktop-google-reviews .google-logo {
    height: auto !important;
    width: 120px !important;
  }

  .desktop-google-reviews .reviews-text-container {
    display: flex !important;
    flex-direction: column !important;
    color: #666 !important;
    font-size: 14px !important;
  }

  .desktop-google-reviews .reviews-text-top {
    margin-bottom: 2px !important;
  }

  .desktop-google-reviews .reviews-text-bottom {
    font-weight: bold !important;
    color: #000 !important;
  }

  /* Call section styling */
  .desktop-call-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .desktop-call-section .call-text {
    color: #666 !important;
    font-size: 16px !important;
    margin-bottom: 5px !important;
  }

  .desktop-call-section .phone-number {
    color: #4a8c4a !important;
    font-size: 32px !important;
    font-weight: bold !important;
    text-decoration: none;
  }

  /* Desktop hamburger styling */
  .desktop-hamburger {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1001 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* HIDE ALL MOBILE ELEMENTS ON DESKTOP */
  .mobile-phone-icon,
  .google-reviews-mobile,
  .mobile-hamburger,
  .mobile-dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* MOBILE HEADER LAYOUT */
@media (max-width: 768px) {
  /* HIDE ALL DESKTOP ELEMENTS ON MOBILE */
  .header-right-elements,
  .desktop-google-reviews,
  .desktop-call-section,
  .desktop-hamburger,
  .dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .main-header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    flex-wrap: nowrap !important;
  }

  /* Logo container */
  .logo-container {
    flex: 1 !important;
    margin-right: 0 !important;
    order: 1 !important;
  }

  .logo-container .logo {
    height: 65px !important;
    width: auto !important;
  }

  /* Mobile phone icon */
  .mobile-phone-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1 !important;
    order: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-phone-icon a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #4a8c4a !important;
    border-radius: 50% !important;
    text-decoration: none !important;
  }

  .mobile-phone-icon i {
    font-size: 24px !important;
    color: white !important;
  }

  /* Mobile Google reviews */
  .google-reviews-mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    color: #333 !important;
    flex: 1 !important;
    text-align: right !important;
    order: 3 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .google-reviews-mobile .google-logo {
    height: auto !important;
    width: 100px !important;
    margin-bottom: 5px !important;
  }

  .google-reviews-mobile .reviews-count {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin-top: 2px !important;
  }

  /* Mobile hamburger */
  .mobile-hamburger {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex: 0.5 !important;
    order: 4 !important;
    position: relative !important;
    z-index: 1001 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .logo-container .logo {
    height: 58px !important;
  }

  .mobile-phone-icon a {
    width: 45px !important;
    height: 45px !important;
  }

  .mobile-phone-icon i {
    font-size: 20px !important;
  }

  .google-reviews-mobile .google-logo {
    width: 90px !important;
  }

  .google-reviews-mobile .reviews-count {
    font-size: 12px !important;
  }

  .mobile-hamburger .hamburger-icon {
    width: 22px !important;
    height: 16px !important;
  }
}

/* Force visibility rules with high specificity */
@media (min-width: 769px) {
  html body .main-header .container .header-right-elements,
  html body .main-header .container .desktop-google-reviews,
  html body .main-header .container .desktop-call-section,
  html body .main-header .container .desktop-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body .main-header .container .mobile-phone-icon,
  html body .main-header .container .google-reviews-mobile,
  html body .main-header .container .mobile-hamburger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

@media (max-width: 768px) {
  html body .main-header .container .mobile-phone-icon,
  html body .main-header .container .google-reviews-mobile,
  html body .main-header .container .mobile-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body .main-header .container .header-right-elements,
  html body .main-header .container .desktop-google-reviews,
  html body .main-header .container .desktop-call-section,
  html body .main-header .container .desktop-hamburger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* ===== REST OF YOUR EXISTING CSS CONTINUES BELOW ===== */
/* Add any other CSS you have from your original file below this line */

/* ===== SIMPLE HAMBURGER MENU CSS - ADD THIS TO YOUR EXISTING CSS ===== */

/* Hamburger Icon - Three Lines */
.hamburger-icon {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 30px !important;
  height: 20px !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hamburger-icon span {
  display: block !important;
  width: 100% !important;
  height: 3px !important;
  background-color: #333 !important;
  border-radius: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Desktop Hamburger Container */
.desktop-hamburger {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  z-index: 1001 !important;
}

/* Mobile Hamburger Container */
.mobile-hamburger {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  z-index: 1001 !important;
}

/* Desktop Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 1000;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  margin-top: 10px;
}

.dropdown-menu.show {
  display: block !important;
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 220px;
  max-width: 90vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 1000;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  margin-top: 10px;
}

.mobile-dropdown-menu.show {
  display: block !important;
}

/* Dropdown Menu Items */
.dropdown-menu ul,
.mobile-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: white;
}

.dropdown-menu ul li,
.mobile-dropdown-menu ul li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu ul li:last-child,
.mobile-dropdown-menu ul li:last-child {
  border-bottom: none;
}

.dropdown-menu ul li a,
.mobile-dropdown-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  background: white;
}

.dropdown-menu ul li a:hover,
.mobile-dropdown-menu ul li a:hover {
  background-color: #f8f9fa;
  color: #4a8c4a;
}

/* Mobile specific menu items */
.mobile-dropdown-menu ul li a {
  padding: 15px 20px;
  font-size: 16px;
}

/* Force visibility on correct devices */
@media (min-width: 769px) {
  .desktop-hamburger {
    display: flex !important;
  }
  .mobile-hamburger {
    display: none !important;
  }
  .mobile-dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-hamburger {
    display: none !important;
  }
  .dropdown-menu {
    display: none !important;
  }
  .mobile-hamburger {
    display: flex !important;
  }
}

/* Make sure hamburger icons are always visible */
.hamburger-icon,
.hamburger-icon span {
  visibility: visible !important;
  opacity: 1 !important;
}
/* Emergency mobile scroll fix */
@media (max-width: 768px) {
  body {
    overflow-y: auto !important;
    position: static !important;
  }

  .mobile-dropdown-menu {
    position: absolute !important;
    max-width: 250px !important;
  }
}
@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }

  .container,
  section,
  .main-header,
  .top-bar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}
/* ===== iOS FORM ZOOM FIX - Add this to your CSS ===== */

/* Prevent iOS Safari from zooming when focusing on form inputs */
@media (max-width: 768px) {
  /* Target all form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important; /* iOS requires 16px minimum to prevent zoom */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background-color: white !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Specific fixes for your quote form */
  #name,
  #postcode,
  input[placeholder="Your name"],
  input[placeholder="Your postcode"],
  input[placeholder="Name"],
  input[placeholder="Postcode"] {
    font-size: 16px !important; /* Critical for preventing zoom */
    padding: 12px 15px !important;
    height: auto !important;
    min-height: 44px !important; /* Apple's recommended touch target size */
  }

  /* Form labels */
  label {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    display: block !important;
    color: #333 !important;
  }

  /* Form buttons */
  button[type="submit"],
  .cta-button-form,
  .bottom-cta-submit-btn {
    font-size: 16px !important;
    padding: 14px 20px !important;
    min-height: 48px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Prevent zoom on focus */
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid #4a8c4a !important;
    outline-offset: 2px !important;
    border-color: #4a8c4a !important;
    /* Don't change font-size on focus */
    font-size: 16px !important;
  }

  /* Form container improvements */
  .form-group {
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  /* Placeholder styling */
  input::placeholder,
  textarea::placeholder {
    color: #999 !important;
    font-size: 16px !important;
    opacity: 1 !important;
  }

  /* Specific form styling for hero form */
  .hero-form-content form,
  .bottom-cta-form {
    width: 100% !important;
  }

  .hero-form-content .form-group,
  .bottom-cta-form .form-group {
    margin-bottom: 15px !important;
  }

  .hero-form-content input,
  .bottom-cta-form input {
    font-size: 16px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Additional viewport meta tag enforcement (add to your HTML head if not already there) */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> */

/* Alternative approach - prevent zoom entirely */
@media (max-width: 768px) {
  /* If the above doesn't work, this prevents all zooming */
  html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  /* Touch action for better mobile interaction */
  input,
  textarea,
  select {
    touch-action: manipulation !important;
  }
}
/* ===== MOBILE TEXT SPACING FIX - Add proper margins from screen edges ===== */

@media (max-width: 768px) {
  /* Fix container padding to give more breathing room */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Specific content section fixes */
  .content-section {
    padding: 30px 0 !important;
  }

  .content-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Text content within sections */
  .text-content {
    padding: 0 !important; /* Remove any conflicting padding */
  }

  /* Paragraph spacing */
  .content-section p,
  .text-content p,
  main p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
  }

  /* Heading spacing */
  .content-section h1,
  .content-section h2,
  .content-section h3,
  .text-content h1,
  .text-content h2,
  .text-content h3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 20px !important;
  }

  /* Main content sections */
  #gutter-cleaning .container,
  #roof-cleaning-washing .container,
  #cost-of-roof-cleaning .container,
  #why-choose-us .container,
  #faq .container,
  #service-area-marlow .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Hero section text */
  .hero-text-content {
    padding: 0 20px !important;
  }

  /* Features bar fix */
  .features-bar .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* List items spacing */
  .content-section ul,
  .content-section ol {
    padding-left: 20px !important;
    margin-left: 0 !important;
  }

  /* Accordion content */
  .accordion-panel {
    padding: 15px 20px !important;
  }

  /* Testimonial content */
  .testimonial-card-modern-content {
    padding: 20px !important;
  }

  /* CTA sections */
  .bottom-cta-bar .container,
  .bottom-cta-bar-section-v2 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* For very small screens, use slightly less padding */
@media (max-width: 480px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .content-section .container,
  #gutter-cleaning .container,
  #roof-cleaning-washing .container,
  #cost-of-roof-cleaning .container,
  #why-choose-us .container,
  #faq .container,
  #service-area-marlow .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero-text-content {
    padding: 0 15px !important;
  }

  .features-bar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Fix for header elements to maintain consistency */
@media (max-width: 768px) {
  .main-header .container,
  .top-bar .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 480px) {
  .main-header .container,
  .top-bar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Additional spacing for readability */
@media (max-width: 768px) {
  /* Add more space between sections */
  .content-section + .content-section {
    margin-top: 20px !important;
  }

  /* Improve paragraph spacing */
  p + p {
    margin-top: 15px !important;
  }

  /* Better spacing for buttons */
  .cta-button,
  .accordion-button {
    margin: 10px 0 !important;
  }
}
/* ===== MOBILE TEXT SPACING FIX ===== */

/* Base container rules - applies to all screen sizes */
.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}

/* Mobile-specific container spacing */
@media (max-width: 768px) {
  /* Ensure ALL containers have proper spacing */
  .container,
  html body .container,
  html body div.container,
  html body section .container,
  html body main .container,
  html body header .container,
  html body footer .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Content sections */
  .content-section,
  .content-section .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Text content within sections */
  .text-content,
  .hero-text-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Paragraphs and headings */
  .content-section p,
  .text-content p,
  .hero-text-content p,
  main p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .content-section h1,
  .content-section h2,
  .content-section h3,
  .text-content h1,
  .text-content h2,
  .text-content h3,
  .hero-text-content h1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Specific sections that need spacing */
  #gutter-cleaning .container,
  #roof-cleaning-washing .container,
  #cost-of-roof-cleaning .container,
  #why-choose-us .container,
  #faq .container,
  #service-area-marlow .container,
  #client-testimonials .container,
  #payment-guarantee .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Header spacing */
  .main-header .container,
  .top-bar .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Features bar */
  .features-bar .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* CTA sections */
  .bottom-cta-bar .container,
  .bottom-cta-bar-section-v2 .container,
  #mid-page-cta-bar .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Forms */
  .hero-form-content,
  .bottom-cta-form,
  .contact-form-placeholder-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Accordion content */
  .accordion-panel {
    padding: 15px 12px !important;
  }

  /* Testimonial content */
  .testimonial-card-modern-content {
    padding: 15px !important;
  }

  /* List items */
  .content-section ul,
  .content-section ol {
    padding-left: 12px !important;
    margin-left: 8px !important;
  }

  /* Override any conflicting rules */
  .with-image .container,
  .content-section.with-image .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* For very small screens (under 480px) */
@media (max-width: 480px) {
  .container,
  html body .container,
  html body div.container,
  html body section .container,
  html body main .container,
  html body header .container,
  html body footer .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .content-section .container,
  #gutter-cleaning .container,
  #roof-cleaning-washing .container,
  #cost-of-roof-cleaning .container,
  #why-choose-us .container,
  #faq .container,
  #service-area-marlow .container,
  .main-header .container,
  .top-bar .container,
  .features-bar .container,
  .bottom-cta-bar .container,
  .bottom-cta-bar-section-v2 .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Ensure content has breathing room */
@media (max-width: 768px) {
  /* Add space between sections */
  .content-section + .content-section {
    margin-top: 0 !important;
  }

  /* Improve paragraph spacing */
  p + p {
    margin-top: 16px !important;
  }

  /* Better spacing for buttons and form elements */
  .cta-button,
  .accordion-button,
  .submit-btn {
    margin: 10px 0 !important;
  }

  /* Ensure images don't break the layout */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Force override any existing conflicting rules */
@media (max-width: 768px) {
  /* Use high specificity to override existing styles */
  html body section.content-section div.container,
  html body main section.content-section div.container,
  html body div.content-section div.container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  /* Ensure wrapper elements don't interfere */
  .page-wrapper,
  .site-wrapper,
  #wrapper,
  main {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* Additional safety rules for edge cases */
@media (max-width: 768px) {
  /* Prevent any hidden overflow that might cause horizontal scrolling */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  /* Ensure all content containers are properly contained */
  * {
    box-sizing: border-box !important;
  }

  /* Make sure no elements extend beyond the viewport */
  .container > * {
    max-width: 100% !important;
  }
}
/* ===== MOBILE FORM IMPROVEMENTS ===== */

@media (max-width: 768px) {
  /* Form container improvements */
  .hero-form-content,
  .contact-form-placeholder-hero,
  .bottom-cta-form {
    background: white !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    margin: 15px 0 !important;
  }

  /* Form heading */
  .hero-form-content h3,
  .contact-form-placeholder-hero h3 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    color: #333 !important;
  }

  /* Form inputs - Enhanced styling */
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  input[id="name"],
  input[id="postcode"],
  input[name="name"],
  input[name="postcode"] {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    background-color: #fafafa !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
  }

  /* Input focus states */
  .form-group input:focus,
  input[id="name"]:focus,
  input[id="postcode"]:focus {
    outline: none !important;
    border-color: #4a8c4a !important;
    background-color: white !important;
    box-shadow: 0 0 0 3px rgba(74, 140, 74, 0.1) !important;
  }

  /* Form labels */
  .form-group label,
  label[for="name"],
  label[for="postcode"] {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 14px !important;
  }

  /* Submit button improvements */
  .cta-button-form,
  .bottom-cta-submit-btn,
  button[type="submit"] {
    width: 100% !important;
    background: linear-gradient(135deg, #ff8c42, #ff6b1a) !important;
    color: white !important;
    padding: 16px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
  }

  .cta-button-form:hover,
  .bottom-cta-submit-btn:hover,
  button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3) !important;
  }

  /* Form security text */
  .form-reassurance-text {
    text-align: center !important;
    margin: 15px 0 !important;
  }

  .form-reassurance-text p {
    font-size: 14px !important;
    color: #666 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .form-reassurance-text i {
    color: #4a8c4a !important;
  }

  /* Accreditation logos in form */
  .hero-accreditation-logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e1e5e9 !important;
  }

  .hero-accreditation-logos img {
    height: 35px !important;
    width: auto !important;
    opacity: 0.8 !important;
  }
}

/* ===== TESTIMONIAL CARD IMPROVEMENTS ===== */

@media (max-width: 768px) {
  /* Testimonial card styling */
  .testimonial-box,
  .hero-testimonial-card {
    background: white !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-left: 4px solid #4a8c4a !important;
  }

  .testimonial-text-modern {
    font-style: italic !important;
    color: #555 !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    font-size: 15px !important;
  }

  /* Testimonial author section */
  .testimonial-author-details-modern {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .author-initial-badge {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }

  .initial-circle {
    width: 40px !important;
    height: 40px !important;
    background: #4a8c4a !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 16px !important;
  }

  .google-g-logo-testimonial {
    width: 16px !important;
    height: 16px !important;
    position: absolute !important;
    bottom: -2px !important;
    right: -2px !important;
  }

  .author-info-modern {
    flex: 1 !important;
  }

  .author-name-modern {
    display: block !important;
    font-weight: bold !important;
    color: #333 !important;
    font-size: 14px !important;
  }

  .author-date-modern {
    display: block !important;
    font-size: 12px !important;
    color: #666 !important;
  }

  .author-rating-modern {
    text-align: right !important;
  }

  .stars-modern {
    color: #ffc107 !important;
    font-size: 14px !important;
    display: block !important;
  }

  .verified-badge-modern {
    font-size: 11px !important;
    color: #4a8c4a !important;
    font-weight: bold !important;
    background: rgba(74, 140, 74, 0.1) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    margin-top: 2px !important;
    display: inline-block !important;
  }
}

/* ===== ADDITIONAL MOBILE POLISH ===== */

@media (max-width: 768px) {
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth !important;
  }

  /* Better touch targets */
  a,
  button,
  input,
  .clickable {
    min-height: 10px !important;
    min-width: 10px !important;
  }

  /* Improved text readability */
  p,
  li,
  span {
    line-height: 1.6 !important;
  }

  /* Better spacing for lists */
  ul,
  ol {
    margin: 15px 0 !important;
  }

  li {
    margin-bottom: 8px !important;
  }
}
/* ===== MOBILE SECTION REORDERING ===== */

@media (max-width: 768px) {
  /* Roof Cleaning/Washing Section - Swap order on mobile */
  #roof-cleaning-washing.content-section.with-image .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
  }

  /* Text content appears first on mobile */
  #roof-cleaning-washing .text-content {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  /* Image content appears second on mobile */
  #roof-cleaning-washing .image-content {
    order: 2 !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  /* Ensure the 2x2 gallery displays properly */
  #roof-cleaning-washing .roof-washing-gallery-2x2 {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Gallery rows */
  .roof-washing-gallery-2x2 .gallery-row {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .roof-washing-gallery-2x2 .gallery-row:last-child {
    margin-bottom: 0 !important;
  }

  /* Individual gallery images */
  .roof-washing-gallery-2x2 .gallery-image-2x2 {
    width: calc(50% - 5px) !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    cursor: pointer !important;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  #roof-cleaning-washing.content-section.with-image .container {
    gap: 20px !important;
  }

  .roof-washing-gallery-2x2 .gallery-row {
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .roof-washing-gallery-2x2 .gallery-image-2x2 {
    width: calc(50% - 4px) !important;
    border-radius: 6px !important;
  }
}

/* ===== OPTIONAL: Apply same reordering to other sections if needed ===== */

@media (max-width: 768px) {
  /* If you want to reorder other sections too, uncomment and modify as needed */

  /*
    #gutter-cleaning.content-section.with-image .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    #gutter-cleaning .text-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    #gutter-cleaning .image-content {
        order: 2 !important;
        width: 100% !important;
    }
    */

  /*
    #service-area-marlow.content-section.with-image .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    #service-area-marlow .text-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    #service-area-marlow .image-content {
        order: 2 !important;
        width: 100% !important;
    }
    */
}

/* ===== ENSURE DESKTOP LAYOUT REMAINS UNCHANGED ===== */

@media (min-width: 769px) {
  /* Reset any mobile-specific ordering for desktop */
  #roof-cleaning-washing .text-content,
  #roof-cleaning-washing .image-content {
    order: initial !important;
  }

  #roof-cleaning-washing.content-section.with-image .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
  }
}
/* ===== MOBILE SECTION REORDERING ===== */

@media (max-width: 768px) {
  /* Roof Cleaning/Washing Section - Swap order on mobile */
  #roof-cleaning-washing.content-section.with-image .container {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 25px !important;
  }

  /* Since we're using column-reverse, the text (which comes second in HTML) will appear first */
  #roof-cleaning-washing .text-content {
    width: 100% !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Image content will appear second */
  #roof-cleaning-washing .image-content {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Ensure the 2x2 gallery displays properly */
  #roof-cleaning-washing .roof-washing-gallery-2x2 {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Gallery rows */
  .roof-washing-gallery-2x2 .gallery-row {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .roof-washing-gallery-2x2 .gallery-row:last-child {
    margin-bottom: 0 !important;
  }

  /* Individual gallery images */
  .roof-washing-gallery-2x2 .gallery-image-2x2 {
    width: calc(50% - 5px) !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    cursor: pointer !important;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  #roof-cleaning-washing.content-section.with-image .container {
    gap: 20px !important;
  }

  .roof-washing-gallery-2x2 .gallery-row {
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .roof-washing-gallery-2x2 .gallery-image-2x2 {
    width: calc(50% - 4px) !important;
    border-radius: 6px !important;
  }
}

/* ===== OPTIONAL: Apply same reordering to other sections if needed ===== */

@media (max-width: 768px) {
  /* If you want to reorder other sections too, uncomment and modify as needed */

  /*
    #gutter-cleaning.content-section.with-image .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    #gutter-cleaning .text-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    #gutter-cleaning .image-content {
        order: 2 !important;
        width: 100% !important;
    }
    */

  /*
    #service-area-marlow.content-section.with-image .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    #service-area-marlow .text-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    #service-area-marlow .image-content {
        order: 2 !important;
        width: 100% !important;
    }
    */
}

/* ===== ENSURE DESKTOP LAYOUT REMAINS UNCHANGED ===== */

@media (min-width: 769px) {
  /* Reset any mobile-specific ordering for desktop */
  #roof-cleaning-washing .text-content,
  #roof-cleaning-washing .image-content {
    order: initial !important;
  }

  #roof-cleaning-washing.content-section.with-image .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }
}
/* ===== MOBILE PRICING GRID LAYOUT ===== */

@media (max-width: 768px) {
  /* Pricing examples container */
  .pricing-examples {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 12px !important;
    margin: 25px 0 !important;
    width: 100% !important;
  }

  /* Individual price items */
  .price-item {
    background: white !important;
    padding: 16px 12px !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e8e8e8 !important;
    transition: all 0.3s ease !important;
  }

  .price-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }

  /* Price styling within items */
  .price-item strong {
    display: block !important;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #4a8c4a !important;
    margin-bottom: 6px !important;
  }

  /* Property type text */
  .price-item {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 500 !important;
  }

  /* Grid positioning - specific items */
  .price-item:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .price-item:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .price-item:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .price-item:nth-child(4) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }
}

/* For very small screens (under 480px) */
@media (max-width: 480px) {
  .pricing-examples {
    gap: 10px !important;
  }

  .price-item {
    padding: 14px 10px !important;
  }

  .price-item strong {
    font-size: 20px !important;
  }

  .price-item {
    font-size: 13px !important;
  }
}

/* Alternative approach if your HTML structure is different */
@media (max-width: 768px) {
  /* If pricing items are in a different container */
  #cost-of-roof-cleaning .pricing-examples,
  .cost-pricing-grid,
  .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin: 25px 0 !important;
  }

  /* Ensure all price-related divs follow the grid */
  .pricing-examples > div,
  .pricing-examples > .price-item,
  .cost-pricing-grid > div,
  .pricing-grid > div {
    background: white !important;
    padding: 16px 12px !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e8e8e8 !important;
  }
}

/* Desktop layout - ensure it remains unchanged */
@media (min-width: 769px) {
  .pricing-examples {
    display: flex !important;
    justify-content: space-around !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .price-item {
    flex: 1 !important;
    min-width: 175px !important;
    margin: 0 10px !important;
  }
}
/* ===== STEPS SECTION - MATCHING ACTUAL HTML STRUCTURE ===== */

/* Reset any existing problematic styles first */
@media (max-width: 768px) {
  /* Target the exact section and classes from your HTML */
  #get-a-quote-steps.steps-section-new {
    padding: 40px 0 !important;
    background: white !important;
  }

  /* Container matches your other sections */
  #get-a-quote-steps .container {
    padding: 0 20px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Section heading - matches your other h2 styles */
  #get-a-quote-steps h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  /* Steps container - clean vertical stack like your testimonials */
  .steps-container-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Step items - styled like your testimonial cards */
  .step-item-new {
    background: white !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .step-item-new:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
    border-color: #4a8c4a !important;
  }

  /* Step header container */
  .step-header-new {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    margin-right: 10px !important;
  }

  /* Step number circle - your brand green */
  .step-number-new-circle {
    width: 40px !important;
    height: 40px !important;
    background: #4a8c4a !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step icon - matching your brand color */
  .step-icon-new {
    font-size: 18px !important;
    color: #4a8c4a !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step text - matching your site's typography */
  .step-item-new p {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    font-weight: 400 !important;
    text-align: left !important;
    flex: 1 !important;
    padding-top: 5px !important; /* Align with number circle */
  }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
  #get-a-quote-steps .container {
    padding: 0 15px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 22px !important;
  }

  .step-item-new {
    padding: 18px 15px !important;
    gap: 12px !important;
  }

  .step-number-new-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }

  .step-icon-new {
    font-size: 16px !important;
  }

  .step-item-new p {
    font-size: 15px !important;
  }
}

/* Desktop layout - matches your site's desktop patterns */
@media (min-width: 769px) {
  #get-a-quote-steps.steps-section-new {
    padding: 60px 0 !important;
  }

  #get-a-quote-steps .container {
    padding: 0 15px !important;
    max-width: 1200px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }

  /* Desktop - horizontal layout */
  .steps-container-new {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
  }

  .step-item-new {
    flex: 1 !important;
    flex-direction: column !important;
    text-align: center !important;
    min-width: 180px !important;
    max-width: 220px !important;
    padding: 25px 20px !important;
  }

  .step-header-new {
    margin-right: 0 !important;
    margin-bottom: 15px !important;
  }

  .step-item-new p {
    text-align: center !important;
    padding-top: 0 !important;
  }

  .step-number-new-circle {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  .step-icon-new {
    font-size: 24px !important;
  }
}

/* Force override any conflicting styles with maximum specificity */
html body #get-a-quote-steps.steps-section-new .steps-container-new {
  display: flex !important;
}

html body #get-a-quote-steps.steps-section-new .step-item-new {
  background: white !important;
  border: 1px solid #e8e8e8 !important;
}

html body #get-a-quote-steps.steps-section-new .step-number-new-circle {
  background: #4a8c4a !important;
  color: white !important;
}

html body #get-a-quote-steps.steps-section-new .step-icon-new {
  color: #4a8c4a !important;
}

/* Remove any grid-based positioning that might be interfering */
@media (max-width: 768px) {
  .step-item-new:nth-child(1),
  .step-item-new:nth-child(2),
  .step-item-new:nth-child(3),
  .step-item-new:nth-child(4),
  .step-item-new:nth-child(5) {
    grid-column: unset !important;
    grid-row: unset !important;
    order: unset !important;
    width: 100% !important;
    margin: 0 !important;
  }
}
/* ===== STEPS SECTION - MATCHING ACTUAL HTML STRUCTURE ===== */

/* Reset any existing problematic styles first */
@media (max-width: 768px) {
  /* Target the exact section and classes from your HTML */
  #get-a-quote-steps.steps-section-new {
    padding: 40px 0 !important;
    background: white !important;
  }

  /* Container matches your other sections */
  #get-a-quote-steps .container {
    padding: 0 20px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Section heading - matches your other h2 styles */
  #get-a-quote-steps h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  /* Steps container - clean vertical stack like your testimonials */
  .steps-container-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Step items - CENTERED LAYOUT */
  .step-item-new {
    background: white !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .step-item-new:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
    border-color: #4a8c4a !important;
  }

  /* Step header container - SINGLE HORIZONTAL LINE */
  .step-header-new {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
    margin-right: 15px !important;
  }

  /* Step number circle - your brand green */
  .step-number-new-circle {
    width: 40px !important;
    height: 40px !important;
    background: #4a8c4a !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step icon - matching your brand color */
  .step-icon-new {
    font-size: 18px !important;
    color: #4a8c4a !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step text - CENTERED UNDER NUMBER/ICON */
  .step-item-new p {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    font-weight: 400 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
  }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
  #get-a-quote-steps .container {
    padding: 0 15px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 22px !important;
  }

  .step-item-new {
    padding: 18px 15px !important;
    gap: 12px !important;
  }

  .step-number-new-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }

  .step-icon-new {
    font-size: 16px !important;
  }

  .step-item-new p {
    font-size: 15px !important;
  }
}

/* Desktop layout - matches your site's desktop patterns */
@media (min-width: 769px) {
  #get-a-quote-steps.steps-section-new {
    padding: 60px 0 !important;
  }

  #get-a-quote-steps .container {
    padding: 0 15px !important;
    max-width: 1200px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }

  /* Desktop - horizontal layout */
  .steps-container-new {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
  }

  .step-item-new {
    flex: 1 !important;
    flex-direction: column !important;
    text-align: center !important;
    min-width: 180px !important;
    max-width: 220px !important;
    padding: 25px 20px !important;
  }

  .step-header-new {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    flex-direction: row !important;
    gap: 12px !important;
  }

  .step-item-new p {
    text-align: center !important;
    padding: 0 !important;
    margin-left: 0 !important;
  }

  .step-number-new-circle {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  .step-icon-new {
    font-size: 24px !important;
  }
}

/* Force override any conflicting styles with maximum specificity */
html body #get-a-quote-steps.steps-section-new .steps-container-new {
  display: flex !important;
}

html body #get-a-quote-steps.steps-section-new .step-item-new {
  background: white !important;
  border: 1px solid #e8e8e8 !important;
}

html body #get-a-quote-steps.steps-section-new .step-number-new-circle {
  background: #4a8c4a !important;
  color: white !important;
}

html body #get-a-quote-steps.steps-section-new .step-icon-new {
  color: #4a8c4a !important;
}

/* Remove any grid-based positioning that might be interfering */
@media (max-width: 768px) {
  .step-item-new:nth-child(1),
  .step-item-new:nth-child(2),
  .step-item-new:nth-child(3),
  .step-item-new:nth-child(4),
  .step-item-new:nth-child(5) {
    grid-column: unset !important;
    grid-row: unset !important;
    order: unset !important;
    width: 100% !important;
    margin: 0 !important;
  }
}
/* ===== STEPS SECTION - MATCHING ACTUAL HTML STRUCTURE ===== */

/* Reset any existing problematic styles first */
@media (max-width: 768px) {
  /* Target the exact section and classes from your HTML */
  #get-a-quote-steps.steps-section-new {
    padding: 40px 0 !important;
    background: #f0f8ff   !important;
  }

  /* Container matches your other sections */
  #get-a-quote-steps .container {
    padding: 0 20px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Section heading - matches your other h2 styles */
  #get-a-quote-steps h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  /* Steps container - clean vertical stack like your testimonials */
  .steps-container-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Step items - CENTERED LAYOUT */
  .step-item-new {
    background: white !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .step-item-new:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
    border-color: #4a8c4a !important;
  }

  /* Step header container - SINGLE HORIZONTAL LINE */
  .step-header-new {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
    margin-right: 15px !important;
  }

  /* Step number circle - your brand green */
  .step-number-new-circle {
    width: 40px !important;
    height: 40px !important;
    background: #4a8c4a !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step icon - matching your brand color */
  .step-icon-new {
    font-size: 18px !important;
    color: #4a8c4a !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Step text - CENTERED UNDER NUMBER/ICON */
  .step-item-new p {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    font-weight: 400 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
  }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
  #get-a-quote-steps .container {
    padding: 0 15px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 22px !important;
  }

  .step-item-new {
    padding: 18px 15px !important;
    gap: 12px !important;
  }

  .step-number-new-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }

  .step-icon-new {
    font-size: 16px !important;
  }

  .step-item-new p {
    font-size: 15px !important;
  }
}

/* Desktop layout - PROPER HORIZONTAL ROW */
@media (min-width: 769px) {
  #get-a-quote-steps.steps-section-new {
    padding: 60px 0 !important;
  }

  #get-a-quote-steps .container {
    padding: 0 15px !important;
    max-width: 1200px !important;
  }

  #get-a-quote-steps h2 {
    font-size: 32px !important;
    margin-bottom: 60px !important;
  }

  /* Desktop - SINGLE HORIZONTAL ROW OF 5 CARDS */
  .steps-container-new {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
  }

  /* Each step card takes equal width */
  .step-item-new {
    flex: 1 !important;
    flex-direction: column !important;
    text-align: center !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 30px 20px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 200px !important;
  }

  .step-header-new {
    margin-right: 0 !important;
    margin-bottom: 20px !important;
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center !important;
  }

  .step-item-new p {
    text-align: center !important;
    padding: 0 10px !important;
    margin-left: 0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #555 !important;
  }

  .step-number-new-circle {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  .step-icon-new {
    font-size: 24px !important;
  }
}

/* Force override any conflicting styles with maximum specificity */
html body #get-a-quote-steps.steps-section-new .steps-container-new {
  display: flex !important;
}

html body #get-a-quote-steps.steps-section-new .step-item-new {
  background: white !important;
  border: 1px solid #e8e8e8 !important;
}

html body #get-a-quote-steps.steps-section-new .step-number-new-circle {
  background: #4a8c4a !important;
  color: white !important;
}

html body #get-a-quote-steps.steps-section-new .step-icon-new {
  color: #4a8c4a !important;
}

/* Remove any grid-based positioning that might be interfering */
@media (max-width: 768px) {
  .step-item-new:nth-child(1),
  .step-item-new:nth-child(2),
  .step-item-new:nth-child(3),
  .step-item-new:nth-child(4),
  .step-item-new:nth-child(5) {
    grid-column: unset !important;
    grid-row: unset !important;
    order: unset !important;
    width: 100% !important;
    margin: 0 !important;
  }
}
/* ===== STICKY BAR FINAL OVERRIDE - ADD TO END OF css/css/style-final.css ===== */

/* Force remove any sticky bar conflicts */
@media (max-width: 768px) {
  /* Remove any body padding that might interfere */
  body {
    padding-top: 0 !important;
  }

  /* Ensure sticky bar elements are not affected by other mobile CSS */
  #sticky-conversion-bar,
  #sticky-conversion-bar * {
    box-sizing: border-box !important;
  }

  /* Force correct mobile layout */
  #sticky-conversion-bar .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    padding: 0 10px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Force button order and sizing */
  #sticky-conversion-bar .sticky-call-btn {
    order: 1 !important;
    flex: 0 0 auto !important;
  }

  #sticky-conversion-bar .sticky-logos-container {
    order: 2 !important;
    flex: 1 !important;
  }

  #sticky-conversion-bar .sticky-quote-btn {
    order: 3 !important;
    flex: 0 0 auto !important;
  }
}
/* ===== HIDE LEFT AND CENTER COLUMNS ON MOBILE, KEEP RIGHT (FORM) ===== */

/* Add this to the END of your css/css/style-final.css file */

@media (max-width: 768px) {
  /* Hide the left and center columns on mobile */
  .bottom-cta-column.bottom-cta-column-left,
  .bottom-cta-column.bottom-cta-column-center {
    display: none !important;
  }

  /* Keep the right column (with form) visible and make it full width */
  .bottom-cta-column.bottom-cta-column-right {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 15px !important;
  }

  /* Ensure the parent container adapts on mobile */
  .bottom-cta-bar-section-v2 .container {
    display: block !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Make sure the right column's content is properly styled */
  .bottom-cta-column-right .quote-form-section,
  .bottom-cta-column-right form,
  .bottom-cta-column-right .form-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

/* ===== ALTERNATIVE APPROACH (if the above doesn't work) ===== */

@media (max-width: 768px) {
  /* More specific targeting - hide first two columns, keep last */
  .bottom-cta-bar-section-v2 .bottom-cta-column:first-child,
  .bottom-cta-bar-section-v2 .bottom-cta-column:nth-child(2) {
    display: none !important;
  }

  .bottom-cta-bar-section-v2 .bottom-cta-column:last-child {
    display: block !important;
    width: 100% !important;
    flex: 1 !important;
  }
}
/* ===== ACCORDION STYLES - FINAL VERSION ===== */
.accordion-button {
  width: 100%;
  background: #2c5f41;
  color: white;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:hover {
  background: #4a8b64;
}

.accordion-button.active {
  background: #4a8b64;
}

.accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  transform: rotate(45deg);
}

.accordion-panel {
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-panel.active {
  border-radius: 0 0 5px 5px;
}

.accordion-panel p {
  padding: 20px;
  margin: 0;
}

/* Sub-accordion styling */
.sub-accordion {
  background: #4a8b64;
  margin-top: 20px;
}

.step-accordion {
  background: #6c757d;
  font-size: 14px;
  margin-top: 5px;
  margin-left: 20px;
  width: calc(100% - 20px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .accordion-button {
    padding: 12px 15px;
    font-size: 15px;
  }

  .accordion-panel p {
    padding: 15px;
  }

  .sub-accordion,
  .step-accordion {
    padding: 10px 12px;
    font-size: 13px;
  }
}
/* ===== FOOTER FORM TEXT FIX - SIMPLE VERSION ===== */

/* Only fix the text color, don't change the footer background or layout */
.bottom-cta-bar-section-v2 .form-intro-text,
.bottom-cta-column-right .form-intro-text,
.bottom-cta-column-right p {
  color: white !important;
}

/* Form reassurance text */
.bottom-cta-bar-section-v2 .form-reassurance-text p,
.bottom-cta-column-right .form-reassurance-text p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Form reassurance icon */
.bottom-cta-bar-section-v2 .form-reassurance-text i,
.bottom-cta-column-right .form-reassurance-text i {
  color: rgba(255, 255, 255, 0.9) !important;
}
/* ===== MOBILE FORM REASSURANCE TEXT FIX ===== */

@media (max-width: 768px) {
  /* Ensure form reassurance text appears under the form on mobile */
  .bottom-cta-form .form-reassurance-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin-top: 15px !important;
    padding: 0 15px !important;
  }

  .bottom-cta-form .form-reassurance-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1.4 !important;
  }

  .bottom-cta-form .form-reassurance-text i {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
  }

  /* Ensure the form container has proper spacing */
  .bottom-cta-column-right .bottom-cta-form {
    padding-bottom: 10px !important;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .bottom-cta-form .form-reassurance-text p {
    font-size: 13px !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .bottom-cta-form .form-reassurance-text {
    padding: 0 10px !important;
  }
}
/* Updated styles for proper centering */
.bottom-cta-column-right {
  text-align: center;
}

.bottom-cta-quote-btn {
  background-color: #348e34 !important;
  color: white !important;
  padding: 15px 30px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 300px !important;
  box-sizing: border-box !important;
}

.bottom-cta-quote-btn:hover {
  background-color: #2a7a2a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(52, 142, 52, 0.3) !important;
}

.bottom-cta-buttons {
  text-align: center;
  margin-bottom: 15px;
}

.cta-subtext {
  color: #666 !important;
  font-size: 14px !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  font-style: italic !important;
  text-align: center !important;
}

.form-intro-text {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333 !important;
  margin-bottom: 15px !important;
  text-align: center !important;
}

.form-reassurance-text {
  text-align: center !important;
}

.form-reassurance-text p {
  color: #666 !important;
  font-size: 14px !important;
  margin: 0 !important;
  text-align: center !important;
}
/* PRIMARY CTA - Quote Button (Highest Priority) */
.bottom-cta-quote-btn {
  background-color: #ff6b35 !important; /* Vibrant action orange */
  color: white !important;
  padding: 15px 30px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 300px !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important; /* Subtle glow */
}

.bottom-cta-quote-btn:hover {
  background-color: #e55a2b !important; /* Darker on hover */
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

/* SECONDARY CTA - Call Button */
.bottom-cta-call-btn {
  background-color: #ff9800 !important; /* Current orange - keep for consistency */
  color: white !important;
  padding: 12px 25px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.bottom-cta-call-btn:hover {
  background-color: #f57c00 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3) !important;
}

/* Alternative High-Converting Color Schemes */

/* OPTION A: Complementary Orange-Blue */
.cta-option-a {
  background-color: #ff5722 !important; /* Material Design Deep Orange */
}

.cta-option-a:hover {
  background-color: #e64a19 !important;
}

/* OPTION B: Urgency Red */
.cta-option-b {
  background-color: #f44336 !important; /* High-urgency red */
}

.cta-option-b:hover {
  background-color: #d32f2f !important;
}

/* OPTION C: Trust-Building Blue */
.cta-option-c {
  background-color: #2196f3 !important; /* Trust blue */
}

.cta-option-c:hover {
  background-color: #1976d2 !important;
}

/* Enhanced button effects for better conversion */
.bottom-cta-quote-btn,
.bottom-cta-call-btn {
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle pulse animation for primary CTA */
@keyframes subtle-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.bottom-cta-quote-btn {
  animation: subtle-pulse 3s ease-in-out infinite !important;
}

/* Hover state enhancements */
.bottom-cta-quote-btn:hover,
.bottom-cta-call-btn:hover {
  cursor: pointer !important;
  text-decoration: none !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .bottom-cta-quote-btn {
    font-size: 16px !important;
    padding: 12px 20px !important;
  }

  .bottom-cta-call-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}
/* CSS to fix the gutter cleaning process section layout */
.process-content-with-image {
  display: flex !important;
  align-items: flex-start !important;
  gap: 30px !important;
  margin-bottom: 40px !important;
}

.process-text-content {
  flex: 1 !important;
  max-width: 60% !important;
}

.process-image-container {
  flex: 0 0 35% !important;
  max-width: 35% !important;
}

.process-image-container img {
  width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure the text flows nicely */
.process-text-content p {
  margin-bottom: 16px !important;
  line-height: 1.6 !important;
}

.process-text-content p:last-child {
  margin-bottom: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .process-content-with-image {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .process-text-content,
  .process-image-container {
    flex: none !important;
    max-width: 100% !important;
  }
}

/* Ensure the overall container has proper spacing */
#gutter-cleaning-process .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Process Row Styling - Clean Version */
.process-row {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.process-column {
  flex: 1;
  min-width: 300px;
}

.process-section {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease;
}

.process-section:hover {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.process-section h2 {
  color: #348e34;
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.process-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.process-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.process-section ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #666;
  line-height: 1.5;
}

.process-section ul li:last-child {
  border-bottom: none;
}

.process-section ul li strong {
  color: #333;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-row {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }

  .process-column {
    min-width: auto;
  }

  .process-section {
    padding: 20px;
  }

  .process-section h2 {
    font-size: 18px;
  }
}
/* Enhanced Process Row Styling for the actual HTML structure */
.process-row {
  display: flex !important;
  gap: 30px !important;
  margin: 40px 0 !important;
  flex-wrap: wrap !important;
}

.process-column {
  flex: 1 !important;
  min-width: 300px !important;
}

.enhanced-section {
  background: #f8f9fa !important;
  border-radius: 12px !important;
  padding: 30px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e9ecef !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Section Header with Image */
.section-header {
  text-align: center !important;
  margin-bottom: 25px !important;
}

.section-icon {
  margin-bottom: 20px !important;
}

.section-image {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 4px solid #348e34 !important;
  box-shadow: 0 4px 15px rgba(52, 142, 52, 0.2) !important;
}

.section-header h2 {
  color: #348e34 !important;
  font-size: 22px !important;
  margin: 0 !important;
  font-weight: bold !important;
}

/* Tool Items Styling */
.tool-item,
.trust-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  margin-bottom: 20px !important;
  padding: 15px !important;
  background: white !important;
  border-radius: 8px !important;
  border-left: 4px solid #348e34 !important;
  transition: all 0.3s ease !important;
}

.tool-item:hover,
.trust-item:hover {
  background: #f0f8f0 !important;
  transform: translateX(5px) !important;
}

.tool-icon,
.trust-icon {
  font-size: 24px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #348e34 !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
}

.tool-details h4,
.trust-details h4 {
  color: #333 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  margin: 0 0 5px 0 !important;
}

.tool-details p,
.trust-details p {
  color: #666 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Special Styling */
.safety-note,
.conclusion-text {
  background: #e8f5e8 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  border-left: 4px solid #348e34 !important;
  margin-top: 20px !important;
  font-style: italic !important;
  color: #2d5a2d !important;
}

/* Trust Features Container */
.trust-features {
  margin-bottom: 20px !important;
}

.tools-list {
  margin-bottom: 20px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .process-column {
    min-width: auto !important;
  }

  .enhanced-section {
    padding: 20px !important;
  }

  .section-image {
    width: 60px !important;
    height: 60px !important;
  }

  .section-header h2 {
    font-size: 20px !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
}

/* Property Types Section */
#property-types {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

#property-types::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a8c4a, #66bb6a, #4a8c4a);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c5f41;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4a8c4a, #66bb6a);
  border-radius: 2px;
}

.pricing-intro {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Property Cards Container */
.property-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Individual Property Card */
.property-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a8c4a, #66bb6a);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 140, 74, 0.15);
}

.property-card:hover::before {
  transform: scaleX(1);
}

/* Property Image Placeholder */
.property-type-image {
  height: 180px;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px dashed #4a8c4a;
  color: #4a8c4a;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.property-type-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(74, 140, 74, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.property-card:hover .property-type-image {
  background: linear-gradient(135deg, #4a8c4a, #66bb6a);
  color: white;
  border-color: #4a8c4a;
}

.property-card:hover .property-type-image::before {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0.3;
}

/* Property Title */
.pricing-property {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c5f41;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

/* Property Description */
.property-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0;
}

/* Conclusion Text */
.conclusion-text {
  background: linear-gradient(135deg, #2c5f41, #4a8c4a);
  color: white;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 6px 20px rgba(44, 95, 65, 0.2);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.conclusion-text::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Call to Action Button */
.cta-button-container {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #e55a2b, #ff6b35);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #property-types {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .pricing-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .property-cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .property-card {
    padding: 25px;
  }

  .property-type-image {
    height: 150px;
    margin-bottom: 20px;
  }

  .pricing-property {
    font-size: 1.3rem;
  }

  .conclusion-text {
    padding: 20px 25px;
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .property-cards-container {
    gap: 20px;
  }

  .property-card {
    padding: 20px;
  }

  .property-type-image {
    height: 130px;
  }
}
/* ===== MOBILE PROPERTY TYPES SECTION FIX ===== */

/* Base container fixes */
#property-types .container {
  max-width: 100% !important;
  padding: 0 15px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  #property-types {
    padding: 40px 0 !important;
    background: #f8f9fa !important;
    overflow-x: hidden !important;
  }

  #property-types .container {
    padding: 0 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .section-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    padding: 0 10px !important;
    word-wrap: break-word !important;
  }

  .pricing-intro {
    font-size: 16px !important;
    margin-bottom: 30px !important;
    padding: 0 10px !important;
    line-height: 1.6 !important;
  }

  /* Property cards container - SINGLE COLUMN STACK */
  .property-cards-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  /* Individual property cards */
  .property-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    background: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e9ecef !important;
  }

  /* Property image placeholders */
  .property-type-image {
    height: 120px !important;
    margin-bottom: 15px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0) !important;
    border: 2px dashed #4a8c4a !important;
    color: #4a8c4a !important;
    font-size: 14px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Property titles */
  .pricing-property {
    font-size: 20px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    color: #2c5f41 !important;
    font-weight: bold !important;
  }

  /* Property descriptions */
  .property-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    text-align: left !important;
    margin: 0 !important;
  }

  /* Conclusion text */
  .conclusion-text {
    background: linear-gradient(135deg, #2c5f41, #4a8c4a) !important;
    color: white !important;
    padding: 20px !important;
    border-radius: 10px !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* CTA Button */
  .cta-button-container {
    text-align: center !important;
    margin-top: 20px !important;
    padding: 0 10px !important;
  }

  .cta-button {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
    color: white !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    min-width: 200px !important;
  }

  .cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  #property-types .container {
    padding: 0 10px !important;
  }

  .section-title {
    font-size: 22px !important;
    padding: 0 5px !important;
  }

  .pricing-intro {
    font-size: 15px !important;
    padding: 0 5px !important;
  }

  .property-card {
    padding: 18px !important;
  }

  .property-type-image {
    height: 100px !important;
    font-size: 13px !important;
  }

  .pricing-property {
    font-size: 18px !important;
  }

  .property-card p {
    font-size: 14px !important;
  }

  .conclusion-text {
    padding: 18px !important;
    font-size: 15px !important;
  }

  .cta-button {
    padding: 12px 24px !important;
    font-size: 15px !important;
    min-width: 180px !important;
  }
}

/* Force override any conflicting grid styles */
@media (max-width: 768px) {
  .property-cards-container {
    grid-template-columns: none !important;
    display: flex !important;
  }

  .property-card:nth-child(1),
  .property-card:nth-child(2),
  .property-card:nth-child(3) {
    grid-column: unset !important;
    grid-row: unset !important;
    order: unset !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

/* Ensure no horizontal scroll */
@media (max-width: 768px) {
  #property-types,
  #property-types *,
  .property-cards-container,
  .property-card {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    overflow-x: hidden !important;
  }
}
/* ===== PROPERTY TYPES SECTION - FIXED VERSION ===== */

/* Base container */
#property-types .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Property cards container */
.property-cards-container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin: 30px 0 !important;
  flex-wrap: wrap !important; /* Allow wrapping */
}

.property-card {
  flex: 1 1 300px !important; /* Flex-grow, flex-shrink, flex-basis */
  min-width: 300px !important; /* Minimum width for readability */
  max-width: 350px !important; /* Maximum width to prevent stretching */
  background-color: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  padding: 20px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.property-type-image {
  background-color: #f0f0f0 !important;
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  border-radius: 5px !important;
  color: #666 !important;
  font-style: italic !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.pricing-property {
  color: #2e7d32 !important;
  font-size: 24px !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  font-weight: bold !important;
}

.pricing-intro {
  text-align: center !important;
  margin-bottom: 30px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.conclusion-text {
  text-align: center !important;
  margin-top: 30px !important;
  padding: 20px !important;
  background: #f8f9fa !important;
  border-radius: 8px !important;
  border-left: 4px solid #2e7d32 !important;
}

/* Desktop - 3 cards in a row */
@media (min-width: 992px) {
  .property-cards-container {
    flex-wrap: nowrap !important;
  }

  .property-card {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}

/* Tablet - 2 cards in a row or stack depending on space */
@media (max-width: 991px) and (min-width: 769px) {
  .property-cards-container {
    justify-content: center !important;
  }

  .property-card {
    flex: 1 1 300px !important;
    max-width: 400px !important;
  }
}

/* Mobile - Single column stack */
@media (max-width: 768px) {
  #property-types .container {
    padding: 0 15px !important;
  }

  .property-cards-container {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
  }

  .property-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .property-type-image {
    height: 150px !important;
  }

  .pricing-property {
    font-size: 22px !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  #property-types .container {
    padding: 0 10px !important;
  }

  .property-card {
    padding: 15px !important;
  }

  .property-type-image {
    height: 120px !important;
  }

  .pricing-property {
    font-size: 20px !important;
  }
}

/* Remove the horizontal scroll approach */
@media (max-width: 768px) {
  .property-cards-container {
    overflow-x: visible !important; /* Remove horizontal scroll */
    flex-wrap: wrap !important; /* Allow proper wrapping */
  }
}
/* ===== GUTTER CLEANING PROCESS SECTION MOBILE REORDERING ===== */

@media (max-width: 768px) {
  /* Target the specific gutter cleaning process section */
  #gutter-cleaning-process .process-content-with-image {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* Section heading - appears FIRST (already at top naturally) */
  #gutter-cleaning-process h2.section-title {
    order: 1 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  /* Image container - appears SECOND (under heading, above text) */
  #gutter-cleaning-process .process-image-container {
    order: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  /* Text content - appears THIRD (below image) */
  #gutter-cleaning-process .process-text-content {
    order: 3 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Image styling */
  #gutter-cleaning-process .process-image-container img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Text content styling */
  #gutter-cleaning-process .process-text-content p {
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
    color: #555 !important;
  }

  #gutter-cleaning-process .process-text-content p:last-child {
    margin-bottom: 0 !important;
  }

  /* Ensure container has proper spacing */
  #gutter-cleaning-process .container {
    padding: 0 20px !important;
  }

  /* Process section styling */
  #gutter-cleaning-process .process-section {
    margin-bottom: 30px !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  #gutter-cleaning-process .container {
    padding: 0 15px !important;
  }

  #gutter-cleaning-process h2.section-title {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }

  #gutter-cleaning-process .process-content-with-image {
    gap: 18px !important;
  }

  #gutter-cleaning-process .process-image-container img {
    max-width: 350px !important;
  }

  #gutter-cleaning-process .process-text-content p {
    font-size: 15px !important;
  }
}

/* Desktop - ensure original layout remains */
@media (min-width: 769px) {
  #gutter-cleaning-process .process-content-with-image {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 30px !important;
  }

  #gutter-cleaning-process .process-text-content {
    flex: 1 !important;
    max-width: 60% !important;
    order: 1 !important;
  }

  #gutter-cleaning-process .process-image-container {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    order: 2 !important;
  }
}

/* Force override any conflicting styles */
@media (max-width: 768px) {
  html body #gutter-cleaning-process .process-content-with-image {
    display: flex !important;
    flex-direction: column !important;
  }

  html body #gutter-cleaning-process .process-image-container {
    order: 2 !important;
    width: 100% !important;
  }

  html body #gutter-cleaning-process .process-text-content {
    order: 3 !important;
    width: 100% !important;
  }
}
/* ===== BOOKING PROCESS SECTION STYLES ===== */
#booking-process {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  color: #2e7d32;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.booking-step {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.booking-step:hover {
  transform: translateY(-5px);
}

.booking-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f5e9;
  border-radius: 50%;
}

.booking-step-icon img {
  width: 40px;
  height: 40px;
}

.booking-step h3 {
  color: #2e7d32;
  font-size: 20px;
  margin-bottom: 15px;
}

.booking-step p {
  color: #555;
  line-height: 1.6;
}

.booking-cta {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1b5e20;
}

@media (max-width: 768px) {
  .booking-steps {
    flex-direction: column;
  }

  .booking-step {
    width: 100%;
  }
}

/* ===== ACCORDION STYLES ===== */
.accordion-button {
  background-color: #2e7d32;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 2px;
  font-weight: bold;
  position: relative;
  border-radius: 4px;
  margin-left: 0;
}

.accordion-button:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 18px;
}

.accordion-button.active:after {
  content: "\2212";
}

.accordion-button.active,
.accordion-button:hover {
  background-color: #266a2a;
}

.accordion-panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-panel p {
  margin: 18px 0;
}

/* ===== SERVICE AREA SECTION STYLES ===== */
.service-area-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.service-area-text {
  flex: 1;
  min-width: 300px;
}

.service-area-map {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-area-text h2 {
  color: #2e7d32;
  margin-bottom: 20px;
  text-align: center;
}

.service-area-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  background-color: #e8f5e9;
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.map-info {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.map-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.map-info p {
  margin: 5px 0;
}

.map-info a {
  color: #4285f4;
  text-decoration: none;
}

.map-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

/* FRESH ACCORDION CSS - Add to your css/css/style-final.css */

/* FAQ Accordions */
.faq-toggle {
  background-color: #2e7d32 !important;
  color: white !important;
  cursor: pointer !important;
  padding: 18px !important;
  width: 100% !important;
  text-align: left !important;
  border: none !important;
  outline: none !important;
  transition: 0.4s !important;
  margin-bottom: 2px !important;
  font-weight: bold !important;
  position: relative !important;
  border-radius: 4px !important;
  font-size: 16px !important;
}

.faq-toggle:after {
  content: "\002B" !important;
  color: white !important;
  font-weight: bold !important;
  float: right !important;
  margin-left: 5px !important;
  font-size: 18px !important;
}

.faq-toggle.active:after {
  content: "\2212" !important;
}

.faq-toggle.active,
.faq-toggle:hover {
  background-color: #266a2a !important;
}

.faq-content {
  padding: 0 18px !important;
  background-color: white !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease-out !important;
  border: 1px solid #ddd !important;
  border-top: none !important;
  border-radius: 0 0 4px 4px !important;
}

.faq-content p {
  margin: 18px 0 !important;
  line-height: 1.6 !important;
  color: #555 !important;
}

/* Location Accordions */
.location-toggle {
  background-color: #4a8c4a !important;
  color: white !important;
  padding: 15px 20px !important;
  width: 100% !important;
  text-align: left !important;
  font-weight: bold !important;
  border: none !important;
  border-radius: 4px !important;
  margin-bottom: 5px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  position: relative !important;
  font-size: 16px !important;
}

.location-toggle:hover {
  background-color: #3a7c3a !important;
}

.location-toggle.active {
  background-color: #3a7c3a !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin-bottom: 0 !important;
}

.location-toggle::after {
  content: "\002B" !important;
  color: white !important;
  font-weight: bold !important;
  float: right !important;
  margin-left: 5px !important;
  font-size: 18px !important;
}

.location-toggle.active::after {
  content: "\2212" !important;
}

.location-content {
  border: 1px solid #e8e8e8 !important;
  border-top: none !important;
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  margin-bottom: 5px !important;
  padding: 0 !important;
  background-color: white !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out !important;
}

.location-content ul {
  margin: 15px 0 !important;
  padding-left: 20px !important;
}

.location-content li {
  margin-bottom: 5px !important;
  color: #555 !important;
}

/* Service Accordions */
.service-accordion {
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background-color: #f9f9f9 !important;
  overflow: hidden !important;
  margin-bottom: 15px !important;
}

.service-header {
  padding: 15px !important;
  cursor: pointer !important;
  position: relative !important;
  background-color: #f9f9f9 !important;
  transition: background-color 0.3s ease !important;
}

.service-header:hover {
  background-color: #f0f0f0 !important;
}

.service-header::after {
  content: "+" !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 20px !important;
  font-weight: bold !important;
  color: #333 !important;
}

.service-accordion.active .service-header::after {
  content: "−" !important;
}

.service-header h3 {
  margin: 0 !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: bold !important;
}

.service-content {
  padding: 0 15px !important;
  background-color: white !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease-out !important;
}

.service-accordion.active .service-content {
  padding: 15px !important;
}

.service-content p {
  margin: 15px 0 !important;
  line-height: 1.6 !important;
  color: #555 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .faq-toggle,
  .location-toggle {
    padding: 12px 15px !important;
    font-size: 15px !important;
  }

  .faq-content,
  .location-content {
    font-size: 14px !important;
  }

  .service-header {
    padding: 12px !important;
  }

  .service-header h3 {
    font-size: 16px !important;
  }
}

/* Ensure all accordions are visible and functional */
.faq-toggle,
.location-toggle,
.service-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  user-select: none !important;
}

.faq-content,
.location-content,
.service-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* FORCE ACCORDION PANELS TO START CLOSED */
.accordion-panel {
  max-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out !important;
  border: 1px solid #e8e8e8 !important;
  border-top: none !important;
  margin-bottom: 5px !important;
  background-color: white !important;
}

.accordion-panel ul {
  margin: 15px 0 !important;
  padding-left: 20px !important;
}

.accordion-panel li {
  margin-bottom: 5px !important;
}

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 40px 0 40px 0;
  flex-direction: column;
}

.faq-heading {
  color: white;
  font-size: 40px;
  margin-bottom: 50px;
}

.faq-container {
  background-color: #2e7d32;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
  text-align: center;
  color: #000; /* Black heading text inside white container */
  margin-bottom: 30px;
  font-size: 2.5em; /* Larger font for heading */
  font-weight: bold;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #2e7d32;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: #2e7d32;
  padding: 14.5px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  font-family: "Arial";
}

.faq-question {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background-color: #266a2a;
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px; /* Initial padding, will be adjusted by JS */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease; /* Smooth transition */
  background-color: #fff; /* White background for answer */
  font-size: 1em;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px; /* Add padding only when expanded */
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Adjust as needed, should be larger than any possible answer height */
  padding: 20px;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .faq-heading {
    font-size: 25px;
  }
  .faq-container h1 {
    font-size: 2em;
  }
  .faq-question {
    font-size: 1em;
  }
  .faq-answer {
    font-size: 0.9em;
  }
}

.accordion-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 40px 0 40px 0;
  flex-direction: column;
}

.accordion-heading {
  color: white;
  font-size: 40px;
  margin-bottom: 50px;
}

.accordion-container {
  background-color: #2e7d32;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.accordion-container h1 {
  text-align: center;
  color: #000; /* Black heading text inside white container */
  margin-bottom: 30px;
  font-size: 2.5em; /* Larger font for heading */
  font-weight: bold;
}

.accordion-item {
  margin-bottom: 20px;
  border: 1px solid #33b249;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-question {
  background-color: #33b249;
  padding: 14.5px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  font-family: "Arial";
}

.accordion-question {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.accordion-question:hover {
  background-color: #3cc65a;
}

.accordion-answer {
  padding: 0 20px; /* Initial padding, will be adjusted by JS */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease; /* Smooth transition */
  background-color: #fff; /* White background for answer */
  font-size: 1em;
  line-height: 1.6;
}

.accordion-answer p {
  margin: 0;
  padding-bottom: 20px; /* Add padding only when expanded */
}

.accordion-item.active .accordion-answer {
  max-height: 1000px; /* Adjust as needed, should be larger than any possible answer height */
  padding: 20px;
}

.accordion-item.active .accordion-question .arrow {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .accordion-heading {
    font-size: 25px;
  }
  .accordion-container h1 {
    font-size: 2em;
  }
  .accordion-question {
    font-size: 1em;
  }
  .accordion-answer {
    font-size: 0.9em;
  }
}

.nested-accordion-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 40px 0 40px 0;
  flex-direction: column;
}

.nested-accordion-heading {
  color: white;
  font-size: 40px;
  margin-bottom: 50px;
}

.nested-accordion-container {
  background-color: #2e7d32;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.nested-accordion-container h1 {
  text-align: center;
  color: #000; /* Black heading text inside white container */
  margin-bottom: 30px;
  font-size: 2.5em; /* Larger font for heading */
  font-weight: bold;
}

.nested-accordion-item {
  margin-bottom: 20px;
  border: 1px solid #a6ce8c;
  border-radius: 5px;
  overflow: hidden;
}

.nested-accordion-question {
  background-color: #a6ce8c;
  padding: 9px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #222222;
  font-family: "Arial";
}

.nested-accordion-question {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.arrow {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.nested-accordion-answer {
  padding: 0 20px; /* Initial padding, will be adjusted by JS */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease; /* Smooth transition */
  background-color: #fff; /* White background for answer */
  font-size: 15px;
  line-height: 1.6;
}

.nested-accordion-answer p {
  margin: 0;
  padding-bottom: 20px; /* Add padding only when expanded */
}

.nested-accordion-item.active .nested-accordion-answer {
  max-height: 1000px; /* Adjust as needed, should be larger than any possible answer height */
  padding: 20px;
}

.nested-accordion-item.active .nested-accordion-question .arrow {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .nested-accordion-heading {
    font-size: 25px;
  }
  .nested-accordion-container h1 {
    font-size: 2em;
  }
  .nested-accordion-question {
    font-size: 1em;
  }
  .nested-accordion-answer {
    font-size: 0.9em;
  }
}

.step-title-header {
  position: absolute;
  top: -25px;
  left: 60px;
  height: 40px;
  background-color: #ffffff;
  color: #4a8c4a !important;
  border-radius: 40px;
  font-size: 14px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border: 3px solid #4a8c4a;
  font-weight: bold;
}

.about-us-standard-container {
  display: flex;
  justify-content: space-evenly;
}

.about-us-standard-item {
  background-color: #4a8c4a;
  padding: 15px;
  color: white !important;
  font-family: Montserrat;
  border-radius: 5px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px;
}

.gallery a img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
}

.gallery a img:hover {
  border-color: #444;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 9999;
}

.lightbox:target {
  display: block;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.controls {
  position: fixed;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.controls a {
  font-size: 40px;
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 50%;
}

.close-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 40px;
  text-decoration: none;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  border-radius: 5px;
}

.case-studies {
  font-family: Verdana, sans-serif;
  margin: 0;
}

.case-studies * {
  box-sizing: border-box;
}

.case-studies .row::after {
  content: "";
  display: table;
  clear: both;
}

.case-studies .row > .column:first-child {
  margin-left: 0;
}

.case-studies .column {
  float: left;
  width: 23.8%;
  margin-left: 8px;
}

.case-studies .modal {
  display: none;
  position: fixed;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000ad;
  z-index: 2000; /* ← this must be higher than your header's z-index */
}

.case-studies .modal-content {
  position: relative;
  background-color: transparent;
  margin: auto;
  padding: 0;
  width: 50%;
  max-width: 1200px;
}

.case-studies .close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.case-studies .close:hover,
.case-studies .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.case-studies .mySlides {
  display: none;
}

.case-studies .cursor {
  cursor: pointer;
}

.case-studies .prev,
.case-studies .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.case-studies .prev {
  left: -60px;
  border-radius: 3px 0 0 3px;
}

.case-studies .next {
  right: -60px;
  border-radius: 3px 0 0 3px;
}

.case-studies .prev:hover,
.case-studies .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.case-studies .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.case-studies img {
  margin-bottom: -4px;
  width: 100%;
}

.case-studies .caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.case-studies .demo {
  opacity: 0.6;
}

.case-studies .active,
.case-studies .demo:hover {
  opacity: 1;
}

.case-studies img.hover-shadow {
  transition: 0.3s;
}

.case-studies .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* 
 * Village Page Custom CSS
 * This CSS file is specifically for the village.html page
 * to ensure changes don't affect other pages
 */

/* Main village page styles */
.village-hero-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.village-hero-section h1 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.village-hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Service sections */
.village-service-section {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
}

.village-service-section h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 25px;
}

.village-service-section h3 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin: 20px 0 15px;
}

.village-service-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Two-column layout */
.village-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.village-column {
  flex: 1;
  min-width: 300px;
}

/* Image placeholders */
.village-image-placeholder {
  background-color: #e8f5e9;
  border: 1px dashed #2e7d32;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #2e7d32;
  font-weight: bold;
}

/* Pricing section */
.village-pricing-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.village-pricing-section h2 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 30px;
}

.village-pricing-list {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.village-pricing-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
}

.village-pricing-list li:last-child {
  border-bottom: none;
}

/* FAQ section */
.village-faq-section {
  padding: 50px 0;
}

.village-faq-section h2 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 30px;
}

.village-faq-item {
  margin-bottom: 20px;
  border-left: 4px solid #2e7d32;
  padding-left: 15px;
}

.village-faq-question {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.village-faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: #2e7d32;
}

.village-faq-question.active:after {
  content: "-";
}

.village-faq-answer {
  display: none;
  padding: 10px 0;
  line-height: 1.6;
}

.village-faq-answer.active {
  display: block;
}

/* Call to action section */
.village-cta-section {
  background-color: #2e7d32;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.village-cta-section h2 {
  margin-bottom: 20px;
}

.village-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.village-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: white;
  color: #2e7d32;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.village-cta-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

/* Testimonials */
.village-testimonial {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.village-testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.village-testimonial-author {
  display: flex;
  align-items: center;
}

.village-testimonial-initial {
  width: 40px;
  height: 40px;
  background-color: #2e7d32;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.village-testimonial-info {
  display: flex;
  flex-direction: column;
}

.village-testimonial-name {
  font-weight: bold;
}

.village-testimonial-date {
  font-size: 0.9rem;
  color: #666;
}

.village-testimonial-rating {
  color: #ffc107;
  margin-top: 5px;
}

.case-study-last-card {
  width: 48.8%;
  margin: 0 auto !important;
}

.hero-header-item {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}

.title-uppercase {
  text-transform: uppercase;
}

.step-item-icon {
  width: 30px;
  height: 30px;
}

.d-none {
  display: none !important;
}

/* Basic form styles */
.form-group {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.cta-button {
    background-color: #FF9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #F57C00;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-header {
    background-color: #348e34;
    color: white;
    padding: 20px;
    position: relative;
}

.popup-header h2 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    color: white;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.popup-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* Form steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.form-step > p {
    color: #000;
    margin-bottom: 20px;
}

/* Service options */
.service-options {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #348e34;
    background-color: #f0f7f0;
}

.service-option.selected {
    border-color: #348e34;
    background-color: #f0f7f0;
}

.service-icon {
    margin-bottom: 15px;
}

.service-name {
    color: #348e34;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 14px;
}

/* Form navigation */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background-color: white;
    padding: 10px 0;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.prev-btn, .next-btn, .submit-form-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.prev-btn {
    background-color: #f5f5f5;
    color: #333;
}

.next-btn, .submit-form-btn {
    background-color: #FF9800;
    color: white;
}

.prev-btn:hover {
    background-color: #e0e0e0;
}

.next-btn:hover, .submit-form-btn:hover {
    background-color: #F57C00;
}

/* Address lookup */
.address-lookup {
    margin-bottom: 20px;
}

.address-results {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.address-option {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    font-weight: 400;
}

.address-option:hover {
    background-color: #f0f7f0;
}

.address-option.selected {
    background-color: #f0f7f0;
    border-left: 3px solid #348e34;
}

.manual-address-toggle {
    display: inline-block;
    margin-top: 10px;
    color: #348e34;
    cursor: pointer;
    text-decoration: underline;
}

.manual-address-form {
    margin-top: 15px;
    display: none;
}

/* Google Maps */
.google-maps-container {
    height: 220px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    position: relative;
}

.map-controls-container {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    flex-wrap: wrap;
}

.map-control-btn {
    background-color: #348e34;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    flex: 1;
    text-align: center;
    transition: background-color 0.2s;
    min-width: 100px;
}

.map-control-btn:hover {
    background-color: #2a7a2a;
}

.map-control-btn.active {
    background-color: #FF9800;
}
.selected-location-info {
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    margin-bottom: 5px;
}

.selected-location-info h4 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.selected-location-info p {
    margin: 5px 0;
}

/* Image upload */
.upload-container {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.upload-container.drag-over {
    border-color: #348e34;
    background-color: #f0f7f0;
}

.upload-icon {
    font-size: 48px;
    color: #348e34;
    margin-bottom: 15px;
}

.upload-text {
    margin-bottom: 15px;
    color: #666;
}

.upload-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #348e34;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.upload-btn:hover {
    background-color: #2a7a2a;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.image-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.add-more-images {
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

.add-more-btn {
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #348e34;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.add-more-btn:hover {
    background-color: #e0e0e0;
}

/* Spinner for image upload */
.spinner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(52, 142, 52, 0.2);
    border-radius: 50%;
    border-top-color: #348e34;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #348e34;
    transition: width 0.3s ease;
}

/* Thank you step */
.thank-you-container {
    text-align: center;
    padding: 20px;
}

.thank-you-icon {
    font-size: 64px;
    color: #348e34;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    margin-bottom: 30px;
}

.testimonial-container {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: left;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    white-space: pre-line;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
    text-align: right;
    margin-top: 15px;
}

.close-thank-you-btn {
    padding: 10px 30px;
    background-color: #348e34;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.close-thank-you-btn:hover {
    background-color: #2a7a2a;
}

/* Responsive styles */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .service-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-option {
        padding: 15px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .google-maps-container {
        height: 200px;
    }
    
    .map-controls-container {
        flex-wrap: wrap;
    }
    
    .map-control-btn {
        padding: 10px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .image-preview {
        width: 100px;
        height: 100px;
    }
    
    .upload-container {
        padding: 20px;
    }
    
    .upload-icon {
        font-size: 36px;
    }
    
    .upload-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-header {
        padding: 15px;
    }
    
    .popup-body {
        padding: 15px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .prev-btn, .next-btn, .submit-form-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    .google-maps-container {
        height: 180px;
    }
    
    .map-control-btn {
        padding: 8px;
        font-size: 11px;
        flex-basis: 48%;
    }
    
    .image-preview-container {
        justify-content: center;
    }
    
    .image-preview {
        width: 90px;
        height: 90px;
    }
    
    .upload-container {
        padding: 15px;
    }
    
    .upload-text {
        font-size: 13px;
    }
    
    .form-step h3 {
        font-size: 18px;
    }
    
    .form-step > p {
        font-size: 14px;
    }
    
    .thank-you-message {
        font-size: 14px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .village-two-column {
    flex-direction: column;
  }

  .village-hero-section h1 {
    font-size: 2rem;
  }

  .village-service-section h2 {
    font-size: 1.8rem;
  }

  .village-image-placeholder {
    height: 200px;
  }
  .about-us-standard-container {
    flex-direction: column;
  }
  .case-studies .column {
    width: 23%;
  }
  .case-study-last-card {
    width: 100%;
    margin-top: -20px !important;
  }
  .sticky-call-btn {
    width: 90px !important;
  }
  .sticky-quote-btn {
    width: 90px !important;
  }
  .safety-note {
    padding-left: 10px;
  }
  .step-title-header {
    left: 48%;
    transform: translateX(-50%);
    height: 30px;
    top: -15px;
  }
  .step-header-new {
    padding-top: 15px !important;
  }
  .feature-item {
    align-items: center !important;
  }
  .steps-container-new {
    gap: 40px !important;
  }
  .about-us-standard-item {
    width: 100% !important;
    margin-top: 15px;
  }
  .step-item-icon {
    width: 20px;
    height: 20px;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  #roof-moss-removal-biocide .container {
    flex-direction: column;
  }
  #roof-moss-removal-biocide .image-content {
    order: 1;
    margin-bottom: 20px;
  }
  #roof-moss-removal-biocide .text-content {
    order: 2;
  }
}
