<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Lora:400,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&amp;display=swap');

/* Reset &amp; Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  background: #f7faff;
  color: #333;
  line-height: 1.6;
}

/* Headings and Buttons: Oswald */
h1, h2, h3, h4, h5, h6,
.hero_box h1,
.card h3,
.content &gt; h2:first-child,
.box2 h2,
.zip_h3,
.footer-section h4,
.company-name,
.testimonial-section h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
}

/* Buttons and Links Styled as Buttons */
button,
input[type="submit"],
input[type="button"],
.hero_box a,
.card a,
.state_city a,
.contact-btn,
.newsletter-form button,
.floating-call-btn,
.search button {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* --- Your existing CSS below --- */

.hero {
  padding-top: 50px;
  background-image: linear-gradient(
    45deg,
    rgb(20, 59, 44) 0%,
    rgb(20, 59, 44) 62%,
    rgb(72, 77, 92) 62%,
    rgb(72, 77, 92) 69%,
    rgb(124, 94, 140) 69%,
    rgb(124, 94, 140) 76%,
    rgb(176, 112, 188) 76%,
    rgb(176, 112, 188) 88%,
    rgb(228, 129, 236) 88%,
    rgb(228, 129, 236) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  min-height: 500px;
  width: 100%;
  color: #fff;
}

.hero_box {
  display: flex;
  justify-content: space-between;
}

.its30 {
  min-width: 400px;
}

.hero_box h1 {
  font-size: 40px;
  margin-bottom: 0.7em;
}

.hero_box a {
  margin-top: 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #ff7132;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1.2rem;
}

.content {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

.content &gt; h2:first-child {
  text-align: center;
  font-size: 2em;
  margin-top: 1em;
  margin-bottom: 0.8em;
}

/* Cards Container */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Individual Card */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 100%;
  max-width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* Card Content */
.card h3 {
  margin-bottom: 1em;
  font-size: 1.4rem;
  color: #000;
}

.card p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.card a {
  margin-top: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #fff;
  color: #000;
  border: 2px solid #ccc;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.card a svg {
  fill: #007bff;
}

.card a:hover {
  background: #ebebeb;
}

/* Tablet: 2 cards */
@media (min-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

/* Desktop: 3 cards */
@media (min-width: 992px) {
  .card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

.state_city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.state_city a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  background-color: #ffffff;
  padding: 5px 2px;
  border-radius: 4px;
  font-size: 19px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
  min-width: calc(25% - 30px);
  min-height: 80px;
}

.state_city a:hover {
  background-color: #007bff;
  color: white;
}

.parts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1.5em;
}

/* Side by side on desktop */
@media (min-width: 992px) {
  .parts {
    flex-direction: row;
    justify-content: space-between;
  }

  .parts &gt; div {
    flex: 1;
  }

  .parts &gt; div:not(:last-child) {
    margin-right: 20px;
  }
}

/* Optional styling for each part */
.part_one,
.part_two {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box1 img {
  width: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 9/13;
  object-fit: cover;
}

.box2 h2 {
  font-size: 2em;
  margin-bottom: 0.8em;
}

.box2 p {
  margin-top: 0.8em;
}

/* Side by side on desktop */
@media (min-width: 992px) {
  .box {
    flex-direction: row;
  }

  .box1 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .box2,
  .box2New {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

.box2 {
  background: #e9ecef;
  padding: 20px;
  border-radius: 8px;
}

ul,
ol {
  padding-left: 15px;
}

.zip_h3 a {
  display: inline-block;
  margin-top: 1.5em;
  text-decoration: none;
  color: #000;
}

.zip_h3 {
  margin: 0px;
  padding: 0px;
  font-size: 25px;
  margin-bottom: 10px;
}

.faq-item {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background-color: #fff;
  font-weight: bold;
  border: none;
  outline: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-item.active .faq-question {
  background-color: #00543b;
  color: white;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
}

.faq-answer p {
  margin: 0;
  color: #555;
}

.testimonial_hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 400px;
  margin-block: 2em;
  background-image: repeating-radial-gradient(
      circle at center center,
      transparent 0px,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 3px,
      transparent 3px,
      transparent 5px,
      rgba(0, 0, 0, 0.03) 5px,
      rgba(0, 0, 0, 0.03) 7px
    ),
    repeating-radial-gradient(
      circle at center center,
      rgb(255, 255, 255) 0px,
      rgb(255, 255, 255) 9px,
      rgb(255, 255, 255) 9px,
      rgb(255, 255, 255) 21px,
      rgb(255, 255, 255) 21px,
      rgb(255, 255, 255) 31px,
      rgb(255, 255, 255) 31px,
      rgb(255, 255, 255) 40px
    );
  background-size: 20px 20px;
}

.testimonial-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

.testimonial-section h2 {
  font-size: 2rem;
  padding: 0px;
  margin-bottom: 30px;
  color: #222;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1rem;
  color: #444;
  background: #f9f9f9;
  border-radius: 10px;
}

.prev,
.next {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 50px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.indicators button {
  width: 10px;
  height: 10px;
  background: #ccc;
  border: none;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.indicators button.active {
  background: #007b5e;
}

.tagline p {
  position: absolute;
  z-index: 99;
}

.tagline img {
  top: -10px;
  left: -50px;
  position: relative;
  width: 250px;
  height: 50px;
  opacity: 0.9;
}

@media only screen and (max-width: 600px) {
  .hero_box {
    flex-direction: column;
  }

  .hero {
    min-height: 400px;
  }

  .testimonial-section {
    max-width: 100%;
    margin: auto;
    text-align: center;
    padding: 40px 10px;
  }

  .testimonial-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .its30 {
    min-width: 100%;
  }

  .hero_box h1 {
    font-size: 25px;
    margin-bottom: 1em;
  }

  .box2 {
    background: transparent;
    padding: 0px;
    border-radius: 0px;
  }

  .box2 h2 {
    font-size: 1.5em;
  }

  .content &gt; h2:first-child {
    font-size: 1.7em;
  }

  .state_city a {
    width: calc(50% - 10px);
    min-height: 80px;
    padding: 5px 10px;
  }
}

.page-content {
  max-width: 1300px;
  margin: 1em auto;
  padding: 1em;
}

.navigation {
  background-color: rgba(12, 12, 12, 0.95);
  width: 100%;
  z-index: 999;
}

header {
  max-width: 1330px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 999;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: 'Oswald', Arial, sans-serif;
}

nav a:hover {
  color: #fff;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ff7b3b;
  color: white;
  font-weight: bold;
  border: none;
  padding: 9px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.home_h1 {
  margin-bottom: 5px !important;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  max-width: 300px;
}

.search input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-right: 5px;
}

.search button {
  padding: 11px 15px;
  border: none;
  border-radius: 5px;
  background-color: #ffe100;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search button:hover {
  background-color: #cab200;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 78px;
    right: 0;
    background-color: #1d7b6c;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .contact-btn {
    margin-top: 10px;
  }

  .search {
    margin-left:10px;
    margin-bottom: 2em;
    max-width: 300px;
  }
}

.footer {
  background-color: #093C38;
  padding: 40px 20px 20px;
  position: relative;
  color:#fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 280px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 10px;
}

.company-name {
  font-size: 1rem;
  font-weight: 500;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-section p {
  margin: 6px 0;
}

.contact-section svg {
  margin-right: 10px;
  fill: #ff5e2e;
}
.contact-section p {
  margin: 1em 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.newsletter-form input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: #ff5e2e;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #e04c1e;
}
.social-icons{
 margin-top:1em;
}
.social-icons a {
  margin-right: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.social-icons a:hover {
  color: #ff5e2e;
}

.footer-bottom {
  margin-top:1em;
  text-align: center;
  padding: 20px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.highlight {
  color: #ff5e2e;
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff5e2e;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
}

.floating-call-btn:hover {
  background-color: #e04c1e;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
    flex: 1 1 auto;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
</pre></body></html>