/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Header */
.site-header {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

/* Navigation */
.main-nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #7abd98;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  list-style: none;
  min-width: 240px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f7f7f7;
  color: #7abd98;
}

/* Hamburger (Mobile) */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  justify-content: center;
}

.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate Hamburger */
.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-top: 1px solid #eee;
  }

  .nav-toggle:checked + .hamburger + .main-nav {
    max-height: 500px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    background: #f9f9f9;
    margin-top: 5px;
  }

  .dropdown-menu li a {
    padding: 10px 20px;
  }
}



/* Footer */
/* Footer */
.site-footer {
  background-color: #f8f8f8;
  color: #333;
  padding: 40px 20px 20px;
  border-top: 1px solid #eaeaea;
  font-size: 15px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #7abd98;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column p,
.footer-column li {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #7abd98;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }
}



/* CSS for the "Schedule a Call" button */
.schedule-call {
  position: fixed;
  top: 80%;
  right: 0; /* Position on the extreme right */
  background-color: #ff5c35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
}

.schedule-call:hover {
  background-color: #004d84; /* Darker shade on hover */
  color: #fff;
}


section {
  padding: 60px 20px;
}

h1, h2, h3 {
  margin-bottom: 20px;
  color: #222;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: #7abd98;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #69a983;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #f9f9f9, #e6f4ed);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #222;
}

.hero p {
  max-width: 600px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: #555;
}

.core-services.sleek {
  background: #fdfdfd;
  padding: 80px 20px;
  border-top: 1px solid #eee;
}

.core-services .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.core-services .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  position: relative;
}

.core-services .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7abd98;
  margin: 15px auto 0;
  border-radius: 2px;
}

.service-highlight {
  background: #fff;
  border-left: 5px solid #7abd98;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-highlight h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-highlight p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .core-services {
    padding: 60px 15px;
  }

  .service-highlight {
    padding: 20px;
  }

  .service-highlight h3 {
    font-size: 1.2rem;
  }
}

/* Services Preview */
.services-preview {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: linear-gradient(to bottom right, #ffffff, #f9fdfb);
  border: 1px solid #e2f2ea;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-color: #c6e8d8;
}

.service-card h3 {
  color: #7abd98;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card a {
  display: inline-block;
  color: #fff;
  background-color: #7abd98;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.service-card a:hover {
  background-color: #5ea783;
}

/* Container styling */
.why-us {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
}



/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem 2.5rem;
}

/* Individual items */
.why-item {
  display: flex;
  align-items: flex-start;
  background: #f9fdf8;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 15px rgb(47 133 90 / 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  cursor: default;
  outline-offset: 4px;
}

.why-item:focus-within,
.why-item:focus {
  box-shadow: 0 0 0 3px #2f855a;
  outline: none;
}

.why-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.why-item:hover {
  box-shadow: 0 12px 20px rgb(47 133 90 / 0.3);
  transform: translateY(-5px);
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px #2f855a);
}

.why-item p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2d3748;
  margin: 0;
  text-align: left;
}

/* CTA Final */
.cta-final {
  background: #7abd98;
  color: #fff;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
}

.cta-final p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1rem;
}

.cta-final .cta-button {
  background-color: #fff;
  color: #7abd98;
  margin-top: 20px;
}

.cta-final .cta-button:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
  }
}

/* Responsive Design */
.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px 0;
}

.counter-box {
  text-align: center;
  margin: 20px;
}

.counter-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.counter {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #FF6F61;
}

.counter-box p {
  margin: 0;
  color: #555;
}


/* Testimonials Section */
.testimonial-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7abd98;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Testimonial Container */
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 30px 25px;
  max-width: 360px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Client Photo */
.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7abd98;
  margin-bottom: 10px;
}

/* Star Rating */
.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Testimonial Text */
.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Author */
.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
  }
}

.location-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.location-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.location-section .section-heading {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.location-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
}

.location-list li {
  background-color: #f8f8f8;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.location-note {
  font-size: 0.95rem;
  color: #444;
}


/* FAQ */
.faq-section {
  background: linear-gradient(to bottom, #f1f8f5, #ffffff);
  padding: 70px 20px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7abd98;
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: #ffffff;
  color: #333;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f6f6f6;
}

.faq-icon {
  font-size: 1.5rem;
  color: #7abd98;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  background: #fafafa;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}



/* Listing coordinator */
.hlc-section {
  padding: 4rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #f7fdfb 0%, #ffffff 100%);
  color: #2d3748;
}

.hlc-container {
  max-width: 1100px;
  margin: auto;
}

.hlc-heading {
  font-size: 2.5rem;
  text-align: center;
  color: #2f855a;
  margin-bottom: 1rem;
}

.hlc-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-inline: auto;
  color: #4a5568;
}

.hlc-subheading {
  font-size: 1.8rem;
  color: #22543d;
  text-align: center;
  margin-bottom: 2rem;
}

/* Features Grid */
/* Pricing Section */
.hlc-pricing-features {
  background: linear-gradient(to bottom, #f0fdf4 0%, #ffffff 100%);
  padding: 3rem 1.5rem;
}

.hlc-subheading {
  text-align: center;
  font-size: 2rem;
  color: #2f855a;
  margin-bottom: 2.5rem;
}

.hlc-price-highlight {
  background-color: #c6f6d5;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: #22543d;
  font-weight: 600;
}

.hlc-included-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.hlc-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: #2d3748;
  padding: 0.8rem 1rem;
  border-left: 4px solid #68d391;
  background: #ffffff;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hlc-included-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.hlc-included-list .hlc-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}


/* Pricing Box */
.hlc-pricing-box {
  background: #f0fff4;
  border: 2px solid #c6f6d5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hlc-pricing-box h3 {
  font-size: 2.2rem;
  color: #2f855a;
  margin-bottom: 0.5rem;
}

.hlc-pricing-box p {
  color: #4a5568;
}

/* Trust Section */
.hlc-trust-section {
  margin-bottom: 3rem;
  text-align: center;
}

.hlc-trust-section h2 {
  font-size: 1.8rem;
  color: #22543d;
  margin-bottom: 1rem;
}

.hlc-trust-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.hlc-trust-section li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
  color: #2d3748;
  font-weight: 500;
}

.hlc-trust-section li::before {
  content: '✔';
  color: #2f855a;
  position: absolute;
  left: 0;
}

/* CTA */
.hlc-cta-section {
  text-align: center;
  margin-top: 3rem;
}

.hlc-cta-section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #2f855a;
}

.hlc-cta-button {
  background: #2f855a;
  color: white;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(47, 133, 90, 0.2);
  transition: background 0.3s ease;
}

.hlc-cta-button:hover {
  background: #276749;
}

/* Responsive Typography and Spacing */
@media (max-width: 768px) {
  .hlc-heading {
    font-size: 2rem;
  }

  .hlc-subheading {
    font-size: 1.5rem;
  }

  .hlc-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hlc-pricing-box h3 {
    font-size: 1.8rem;
  }

  .hlc-cta-section h2 {
    font-size: 1.6rem;
  }

  .hlc-cta-button {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Stack list and adjust icons for very small screens */
@media (max-width: 480px) {
  .hlc-feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .hlc-icon {
    margin-bottom: 0.5rem;
  }

  .hlc-container {
    padding: 0 1rem;
  }

  .hlc-pricing-box {
    padding: 1.5rem 1rem;
  }

  .hlc-cta-button {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

.hlc-faq-section {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: #f9fafb;
  border-radius: 12px;
}

.hlc-faq-heading {
  font-size: 1.8rem;
  text-align: center;
  color: #2f855a;
  margin-bottom: 2rem;
}

.hlc-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.hlc-faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.hlc-faq-toggle {
  display: none;
}

.hlc-faq-question {
  display: block;
  cursor: pointer;
  padding: 1rem;
  font-weight: 600;
  background: #edfdf5;
  color: #22543d;
  position: relative;
}

.hlc-faq-question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.hlc-faq-toggle:checked + .hlc-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.hlc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f9f9f9;
  padding: 0 1rem;
}

.hlc-faq-toggle:checked + .hlc-faq-question + .hlc-faq-answer {
  max-height: 300px;
  padding: 1rem;
}

.hlc-faq-answer p {
  margin: 0;
  color: #4a5568;
  line-height: 1.5;
}

.hlc-mls-coverage {
  background: #f0fff4;
  padding: 2rem 1rem;
  border-top: 2px solid #c6f6d5;
  border-bottom: 2px solid #c6f6d5;
  font-family: 'Poppins', sans-serif;
}

.hlc-coverage-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #2f855a;
  margin-bottom: 1rem;
}

.hlc-collapse-toggle {
  display: block;
  margin: 1rem auto 0;
  padding: 0.6rem 1.2rem;
  background: #68d391;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.hlc-collapse-content {
  display: none;
  margin-top: 1rem;
}

.hlc-region {
  margin-bottom: 1.5rem;
}

.hlc-region h3 {
  font-size: 1.2rem;
  color: #22543d;
  margin-bottom: 0.5rem;
}

.hlc-region ul {
  list-style: none;
  padding-left: 0;
}

.hlc-region li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #2d3748;
}
/* Transaction coordinator*/

/* Base Styling */
.hlc-tc-section {
  background: linear-gradient(to bottom, #fefefe 0%, #f7fdfb 100%);
  padding: 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.hlc-tc-heading {
  text-align: center;
  font-size: 2rem;
  color: #2f855a;
  margin-bottom: 1.2rem;
}

.hlc-tc-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  color: #4a5568;
}

.hlc-pricing-box {
  text-align: center;
  background: #f0fff4;
  padding: 1.5rem;
  border: 2px solid #c6f6d5;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.hlc-pricing-box h2 {
  font-size: 1.8rem;
  color: #22543d;
  margin-bottom: 0.4rem;
}

.hlc-pricing-box .hlc-tc-sub {
  color: #718096;
  font-weight: 500;
  font-size: 0.95rem;
}

.hlc-subheading {
  text-align: center;
  color: #2f855a;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
}

.hlc-included-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hlc-included-list li {
  padding: 0.7rem 1rem;
  border-left: 4px solid #68d391;
  background: #ffffff;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #2d3748;
  transition: background 0.2s ease;
}

.hlc-included-list li:hover {
  background: #f0fdf4;
}

/* Service Area Section */
.hlc-service-areas {
  background: #f9fdfa;
  padding: 2.5rem 1rem;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #e6fffa;
  border-bottom: 2px solid #e6fffa;
}

.hlc-area-heading {
  text-align: center;
  font-size: 1.7rem;
  color: #2f855a;
  margin-bottom: 1.5rem;
}

.hlc-location-list {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hlc-location-list li {
  background: #ffffff;
  border-left: 4px solid #68d391;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  color: #2d3748;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.hlc-location-list li:hover {
  background: #f0fff4;
}

.hlc-local-service-note {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  text-align: center;
}

/* Responsive Tweaks for Large Screens (optional) */
@media (min-width: 768px) {
  .hlc-included-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hlc-location-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .hlc-tc-heading {
    font-size: 2.3rem;
  }

  .hlc-subheading,
  .hlc-area-heading {
    font-size: 1.8rem;
  }
}



/* Virtual assistant*/
.hlc-va-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f7fafc 100%);
  padding: 3rem 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.hlc-va-heading {
  text-align: center;
  font-size: 2.3rem;
  color: #2f855a;
  margin-bottom: 1.5rem;
}

.hlc-va-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
}

.hlc-subheading {
  text-align: center;
  color: #2f855a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.hlc-pricing-box {
  text-align: center;
  background: #f0fff4;
  padding: 1.8rem;
  border: 2px solid #c6f6d5;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hlc-pricing-box h2 {
  font-size: 2rem;
  color: #22543d;
  margin-bottom: 0.5rem;
}

.hlc-pricing-box .hlc-tc-sub {
  color: #718096;
  font-weight: 500;
  font-size: 0.95rem;
}

.hlc-included-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hlc-included-list li {
  padding: 0.75rem 1rem;
  border-left: 4px solid #68d391;
  background: #ffffff;
  border-radius: 6px;
  font-size: 1rem;
  color: #2d3748;
  transition: background 0.2s ease;
}

.hlc-included-list li:hover {
  background: #f0fdf4;
}

/* Responsive: Show 2 columns on tablet+ */
@media (min-width: 768px) {
  .hlc-included-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hlc-va-heading {
    font-size: 2.5rem;
  }

  .hlc-subheading {
    font-size: 1.9rem;
  }
}

html {
  scroll-behavior: smooth;
}