body {
    margin: 0;
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
}

h1 {
    font-weight: 500;
    font-size: 28px;
    display: flex;
    justify-content: center;
}
h2 {
    font-weight: 300;
    font-size: 22px;
}



.hero {
    position: relative;
    height: 600px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
   
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 50% opacity */
    z-index: 0;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-weight: 300;
    font-size: 4em;
    margin: 0;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    padding: 20px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    padding: 30px;
    text-align: center;
    border: 1px solid #ccc; 
}

.service img {
    height: 150px;
}

.service p {
    text-align: justify;
}

.service-description  {
    width: 80%;
    justify-items: center;
    text-align: center;
    margin: 0 auto;
    line-height: 2;
    padding: 20px;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;      /* Centers the entire section horizontally */
    align-items: flex-start;      /* Aligns text and image to top */
    gap: 40px;                    /* Space between text and image */
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 8px;
}
  
  /* Text content styling */
.service-list {
    flex: 1 1 150px;
}
  
.service-list h2, .service-list h1 {
    margin-top: 0; /* Adjust to visually align with the image */
    margin-bottom: 20px;
    text-align: left;
}
  
.service-list ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
  
.service-list li {
    font-size: 17px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
  
.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}
  
  /* Image styling */
.service-img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
  
.service-img img {
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
  
.btn {
    margin-top: 60px;
    display: inline-block;
    color: #002D00;
    text-decoration: underline;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
 }

.book-appt {
    background-color: #002D00;
    color: white;
    padding: 20px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;  
}

.quote {
    padding: 100px 0;
    background-color: #d3d3d3;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border: none;
}

.quote-section {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-image {
    width: 100%;
    position: relative;

}

.quote-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.quote-content {
    position: absolute;
    width: 60%;
    height: 60%;
    background-color: white;
    padding: 30px 40px;
    font-style: italic;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}


  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ededf0;
    padding: 60px 20px 60px 20px;
  }

  .about-logo {
    width: 260px;
    max-width: 90vw;
  }

  .about-slogan {
    font-size: 2em;
    font-weight: 500;
    font-style: italic;
  }

  .about-description {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
  }


  @media (max-width: 700px) {
    .about-description {
      font-size: 1em;
      line-height: 1.6;
      padding: 20px;
    }
    .about-logo {
      width: 150px;
    }
    .about-slogan {
      font-size: 1.2em;
    }
}

@media (max-width: 900px) {
    .contact-container {
      flex-direction: column;
      gap: 30px;
    }
    .contact-form-section {
      max-width: 100%;
    }
   
  }


@media screen and (min-width: 1025px) {
    
.service-details {
    padding: 40px 20px;
}

.quote {
    margin-top: 80px;
}

.quote-image {
    transform: translateX(-120px);
}

.quote-content {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.footer-section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
    justify-items: start;
}

.footer-logo img {
    height: 150px;
    width: auto;
    max-width: 100%;
}
.pre-contact-section {
    min-height: 700px;
}

.about-slogan {
    font-size: 2em;
    font-style: italic;
    margin-bottom: 32px;
  }

  .about-feature-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}
.about-feature-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* TEXT BLOCK */
  .about-feature-text {
    flex: 1 1 500px;
    min-width: 280px;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .about-feature-text h2 {
    font-size: 2em;
    margin-bottom: 18px;
    color: #002D00;
  }
  
  .about-feature-text p {
    font-size: 1.1em;
    color: #222;
  }
  
  /* IMAGE BLOCK */
  .about-feature-img {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
  }
  
  .about-feature-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .footer-links {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    grid-template-columns: none !important;
  }
  .footer-links a {
    margin-right: 40px;
  }
  .footer-links a:last-child {
    margin-right: 0;
  }

  .hero-icon {
    width: 250px; /* Adjusted size to be smaller */
    height: auto;
    margin-top: 5px; /* Added space between text and icon */
    margin-left: 100px;
    fill: white;
    display: block;
    transform: scaleY(-1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 1;
}
}  


@media screen and (max-width: 768px) {

.top-bar {
    padding: 10px 20px;
    justify-content: center; /* Centered for mobile */
}

.header {
    padding: 20px;
}

.nav {
    display: none; /* Hide desktop navigation */
}

.mobile-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-started-btn {
    background: #1576b8;
    color: #fff;
    border-radius: 8px;
    padding: 20px 48px;
    font-size: 0.8em;
    font-weight: 600;
    border: none;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
}
.get-started-btn:hover {
    background: #125a8a;
    text-decoration: none;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.hero {
    padding: 0 20px; /* Add padding for mobile */
}

.hero h1 {
    font-size: 2.8em; /* Smaller font size for mobile */
}

.hero-icon {
    width: 100px; /* Adjust icon width for mobile */
    margin-top: 10px; /* Adjust margin for mobile */
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 30px; /* Adjust gap for single column layout on mobile */
}

.service-details {
    display: flex;
    flex-direction: column-reverse;
}
.service-description p {
    text-align: justify;
}

.quote {
    margin: 60px 0px 0px 0px;
}
.quote-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 95vw;
}
.quote-image {
    order: -1;
    max-width: 100vw;
}
.quote-content {
    position: relative;
    width: 90%;
    margin: 0px auto 0 auto; /* negative top margin for overlap */
    font-size: 16px;
    padding: 18px 10px;
    box-sizing: border-box;
    z-index: 2;
    left: 0;
    right: 0;
    margin-top: -30px;
}
.service-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-img img {
    width: 325px;
    height: 200px;
    margin: 0 auto !important;
    display: block;
}
.hero-icon {
    width: 150px; /* Adjusted size to be smaller */
    height: auto;
    margin-top: 5px; /* Added space between text and icon */
    margin-left: 90px;
    fill: white;
    display: block;
    transform: scaleY(-1);
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    position: relative; /* To contain the h1 and SVG */
    z-index: 1; /* Ensure content is above image */
}
}




.footer {
    background-color: #002D00;
    color: #FFFFFF;
    padding: 0px 30px 30px 30px;
    text-align: center;
}

.footer .logo img {
    height: 150px; /* Adjust as needed */
    margin-bottom: 10px;
}

.footer h3 {
    color: #555;
    font-size: 1.5em;
}

/* Footer Flex Layout */
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 0px 0;
}

.footer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links-centered {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0px 50px;
  justify-content: center;
  align-items: center;
}
.footer-links a {
  color: #FFFCE1;
  text-decoration: underline;
  font-size: 16px;
  white-space: nowrap;
}
.footer-portal {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.portal-login {
  background: #1576b8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 10px 0;
  }
  .footer-links {
    grid-template-columns: repeat(2, auto);
    gap: 10px 20px;
  }
  .footer-portal {
    justify-content: center;
    width: 100%;
  }
  .pre-contact-section {
    min-height: 600px;
  }
}

.footer-links {
    grid-template-columns: 1fr;
    gap: 8px 0;
}


.footer-logo img {
  height: 120px;
  width: auto;
  max-width: 100%;
}

.footer-contact {
  text-align: center;
  margin: 0px 0 40px 0;
}
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 500;
  color: #FFFCE1;
}
.footer-contact p {
  margin: 6px 0;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 300;
}
.footer-contact a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer-privacy {
    width: 70%;
    margin: auto;
}

.footer-privacy p {
  margin-bottom: 24px;
  font-weight: 300;
}

.pre-contact-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.pre-contact-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.pre-contact-overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}
.pre-contact-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 60px 20px;
}
.pre-contact-content h2 {
  color: #fff;
  font-size: 3.2em;
  font-family: 'Georgia', serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}
.pre-contact-btn { 
  background: #1576b8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 60px;
  font-size: 1.3em;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 10px;
}
.pre-contact-btn:hover {
  background: #125a8a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .pre-contact-content h2 {
    font-size: 2em;
  }
  .pre-contact-btn {
    padding: 16px 24px;
    font-size: 1em;
  }
  .pre-contact-content {
    padding: 40px 10px 40px 10px;
  }
  .get-started-btn {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .get-started-btn {
    display: inline-block !important;
    text-decoration: none;
  }
}

.hero-you {
  display: inline-block;
  position: relative;
}
.hero-icon-contact {
  display: block;
  width: 110px;
  height: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(2px) scaleY(-1);
  margin-top: 0;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
.about-feature-section {
  max-width: 1100px;
  margin: 50px 20px 40px 20px;
  padding: 0 20px;
}
.about-feature-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-feature-text {
  min-width: 280px;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
}
.about-feature-text h2 {
  font-size: 2em;
  margin-bottom: 18px;
  color: #002D00;
}
.about-feature-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #222;
}
.about-feature-img {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

  .about-feature-row:nth-of-type(2) {
    flex-direction: column-reverse !important;
  }
  .about-feature-row, .about-feature-row.reverse {
    flex-direction: column !important;
    gap: 24px;
    align-items: center;
  }
  .about-feature-img, .about-feature-text {
    max-width: 100%;
  }
}




label {
  font-size: 1em;
  margin-bottom: 4px;
  color: #222;
  font-weight: 400;
}


@media (max-width: 900px) {
  .about-feature-row {
    margin-bottom: 0 !important;
  }
  .about-feature-img img {
    margin-top: 0 !important;
  }
}

select, option {
  font-size: 1em;
}

.paperwork-section {
  width: 100%;
  background: #ededf0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.paperwork-text {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 520px;
}
.paperwork-text h2 {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 18px;
}
.paperwork-text .paperwork-subhead {
  font-weight: 600;
  margin-bottom: 10px;
}

.paperwork-download {
  display: inline-block;
  background: #002D00;
  color: #fff;
  border-radius: 8px;
  padding: 20px 48px;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 30px;
  text-decoration: none;
}
.paperwork-img {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paperwork-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  object-fit: cover;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .nav {
    display: none !important;
  }
  .hamburger-menu {
    display: block !important;
    position: relative;
    z-index: 1000;
  }
  .hamburger-icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
  }
  .hamburger-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0d3c22;
    z-index: 2000;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .mobile-menu-overlay.active {
    display: flex;
  }
  .mobile-menu-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 24px 0 24px;
  }
  .mobile-menu-logo {
    height: 48px;
    width: auto;
  }
  .mobile-menu-close {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    font-size: 2.2em;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 16px;
  }
  .mobile-menu-links {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .mobile-menu-links li {
    margin: 12px 0;
  }
  .mobile-menu-links a {
    color: #fff;
    font-size: 1.4em;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    max-width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .mobile-menu-links a:hover {
    color: #7ecfff;
  }
  .mobile-menu-bottom {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 40px 0;
  }
  .mobile-menu-bottom .get-started-btn {
    background: #1576b8;
    color: #fff;
    border-radius: 8px;
    padding: 20px 48px;
    font-size: 1.2em;
    font-weight: 500;
    border: none;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .mobile-menu-bottom .get-started-btn:hover {
    background: #125a8a;
  }
}
@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }
  .mobile-menu-overlay {
    display: none !important;
  }
}

.hero-home::before {
  height: 850px;
  max-height: 850px;
}

.hero-home {
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
}
.hero-home .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    width: auto;
    height: auto;
    /* padding-left: 7vw;
    padding-right: 0;
    padding-top: 120px; */
}
.hero-home p {
    font-size: 40px;
    margin-bottom: 4px;
    margin-top: 0;
    text-align: center;
}

.hero-home .hero-chevron {
  margin-top: 32px;
}
.hero-home .hero-chevron svg {
  display: block;
  transform: scaleX(0.7);
}

.about-section-home {
  margin-top: 250px;
}

@media (max-width: 600px) {
  .btn,
  .learn-more {
    text-align: center;
  }
}

body { font-family: 'Poppins', sans-serif; }
.faq-hero {
    width: 100vw;
    height: 260px;
    background: url('images/faq-hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-hero h1 {
    color: #fff;
    font-family: 'Georgia', serif;
    font-size: 3.5em;
    font-weight: 400;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}
.faq-title {
    font-size: 2.5em;
    color: #0d3c22;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}
.faq-list {
    margin: 0 auto;
    max-width: 800px;
}
.faq-item {
    border-bottom: 1px solid #444;
    padding: 18px 0;
}
.faq-question {
    font-size: 1.08em;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
}
.faq-answer {
    display: none;
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-chevron {
    font-size: 0.9em;
    transition: transform 0.2s;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}



