/* CSS RESET & BASE FONT STACKS (mobile-first) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F3F1E7;
  color: #1C2A49;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1C2A49;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #FF6F3C;
}
button,
input[type='button'],
input[type='submit'] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1C2A49;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 18px 0 rgba(16,34,75,0.14);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  padding: 32px 22px;
  flex: 1 1 260px;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(55,166,126,0.22);
  transform: translateY(-6px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(28,42,73,0.09);
  position: relative;
  flex-direction: column;
  font-size: 1.12rem;
  color: #23263A;
  min-width: 0;
}
.testimonial-card strong, .testimonial-card .client-feedback {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #37A67E;
  font-weight: 700;
  margin-top: 10px !important;
}
.client-feedback span {
  color: #FFC300;
  margin-left: 12px;
  font-size: 1rem;
  vertical-align: middle;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(93deg,#37A67E 40%, #03C6FA 95%);
  color: #fff;
  padding: 56px 0 40px 0;
  margin-bottom: 60px;
  text-shadow: 0 2px 12px rgba(30,30,70,0.14);
  box-shadow: 0 12px 36px 0 rgba(28,42,73,0.09);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 720px;
  padding: 0;
}
.hero h1,
.hero h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(28,42,73,0.08);
}
.hero p {
  color: #eaf9f6;
  font-size: 1.28rem;
  margin-bottom: 26px;
  font-weight: 500;
}

/* FEATURES & SERVICES */
.features .content-wrapper ul,
.services-list .content-wrapper ul,
.service-details .content-wrapper ul,
.services-preview .content-wrapper ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features .content-wrapper li,
.services-list .content-wrapper li,
.service-details .content-wrapper li,
.services-preview .content-wrapper li {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 22px 75px;
  position: relative;
  min-width: 190px;
  flex: 1 1 245px;
  box-shadow: 0 2px 12px 0 rgba(55,166,126,0.11);
  margin-bottom: 0;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.features .content-wrapper li img,
.services-list .content-wrapper li img,
.service-details .content-wrapper li img,
.services-preview .content-wrapper li img {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
}

/* NEWSLETTER */
.newsletter-signup {
  background: #1C2A49;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(28,42,73,0.13);
  margin-bottom: 60px;
}
.newsletter-signup h2 {
  color: #fff;
}
.newsletter-signup p {
  color: #eaf9f6;
  font-weight: 500;
}
.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.newsletter-signup input[type=email] {
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  margin-right: 12px;
  background: #fff;
  color: #23263A;
  flex: 1 1 180px;
}
.newsletter-signup button[type=submit] {
  background: #37A67E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 11px 0 rgba(55,166,126,0.09);
  transition: background 0.2s, transform 0.2s;
}
.newsletter-signup button[type=submit]:hover {
  background: #1C2A49;
  color: #FFF200;
  transform: translateY(-2px) scale(1.03);
}

/* CTA PRIMARY BUTTON */
.cta-primary {
  background: #37A67E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 22px;
  font-size: 1.15rem;
  padding: 13px 32px;
  box-shadow: 0 2px 19px 0 rgba(55,166,126,0.16);
  transition: background 0.22s, color 0.2s, transform 0.18s;
  margin: 8px 0;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #03C6FA;
  color: #fff200;
  transform: translateY(-2px) scale(1.035);
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #37A67E;
  box-shadow: 0 3px 13px 0 rgba(55,166,126,0.07);
  padding: 0;
  z-index: 1040;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
}
header img {
  height: 44px;
  max-width: none;
  margin-right: 18px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  color: #1C2A49;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover,
header nav a.active {
  background: #37A67E;
  color: #fff;
}

header nav a.cta-primary {
  margin-left: 22px;
}

.mobile-menu-toggle {
  display: none;
  background: #37A67E;
  color: #fff;
  font-size: 2rem;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 7px rgba(55,166,126,0.11);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #1C2A49;
  color: #fff200;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1C2A49EE;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(105vw);
  transition: transform 0.38s cubic-bezier(.6,0,.23,1);  
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  align-self: flex-end;
  margin: 22px 30px 0 0;
  cursor: pointer;
  border: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 44px 18px 0 36px;
  gap: 19px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: transparent;
  border-radius: 8px;
  padding: 10px 24px;
  transition: background 0.15s, color 0.13s;
  min-width: 180px;
}
.mobile-nav a:hover {
  background: #37A67E;
  color: #fff200;
}

/* FOOTER */
footer {
  background: #1C2A49;
  color: #fff;
  padding: 38px 0 20px 0;
  border-top: 3px solid #37A67E;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #F3F1E7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: #FFC300;
}
footer .contact-info p {
  margin-bottom: 7px;
  font-size: 0.99rem;
  color: #eaf9f6;
}
footer .contact-info a {
  color: #37A67E;
  font-weight: 600;
  transition: color 0.14s;
}
footer .contact-info a:hover {
  color: #FFC300;
}

/* FAQ SECTION & TEXT BLOCKS */
.text-section,
.text-section ul,
.text-section dl {
  margin-bottom: 22px;
}
.text-section ul {
  list-style: disc inside;
  padding-left: 18px;
  color: #1C2A49;
}
.text-section li {
  margin-bottom: 10px;
  font-size: 1.03rem;
  font-weight: 500;
}
.text-section dl {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.text-section dt {
  font-weight: 700;
  color: #37A67E;
  margin-top: 15px;
  font-size: 1.12rem;
}
.text-section dd {
  margin-left: 12px;
  color: #23263A;
}
.text-section a.cta-primary {
  margin-top: 17px;
}

.map {
  margin-top: 17px;
  padding: 10px 0 4px 0;
}

/* CARD LAYOUTS */
.card-container,
.content-grid {
  margin-bottom: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* SUCCESS MESSAGE PAGE */
.thank-you-page h1 {
  color: #37A67E;
  margin-bottom: 22px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2300;
  background: #F3F1E7;
  color: #1C2A49;
  box-shadow: 0 -4px 32px rgba(55,166,126,0.12);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.06rem;
  border-top: 3px solid #37A67E;
  animation: cookie-slide-up 0.33s ease;
}
@keyframes cookie-slide-up {
  from {transform: translateY(80px); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 11px;
  padding: 8px 22px;
  margin: 0;
  box-shadow: 0 2px 3px 0 rgba(55,166,126,0.11);
  transition: background 0.16s, color 0.16s, transform 0.12s;
  border: none;
}
.cookie-banner .accept {
  background: #37A67E;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #1C2A49;
  color: #fff200;
  transform: scale(1.03);
}
.cookie-banner .reject {
  background: #FFC300;
  color: #1C2A49;
}
.cookie-banner .reject:hover {
  background: #F50F57; color: #fff; transform: scale(1.03);
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #37A67E;
  border: 2px solid #37A67E;
}
.cookie-banner .settings-btn:hover {
  background: #E4F9E6; color: #1C2A49;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2400;
  background: #fff;
  color: #1C2A49;
  border-radius: 20px;
  box-shadow: 0 6px 44px 0 rgba(55,166,126,0.19);
  padding: 34px 28px 18px 28px;
  width: 95vw;
  max-width: 400px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-slide .26s cubic-bezier(.62,0,.23,1);
}
.cookie-modal.active {
  display: flex;
}
@keyframes cookie-modal-slide {
  from { transform: translate(-50%, 10%); opacity: 0; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}
.cookie-modal h3 {
  color: #37A67E;
  font-size: 1.22rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  color: #1C2A49;
  margin-left: 5px;
}
/* custom toggles */
.cookie-modal .toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  vertical-align: middle;
  margin-right: 7px;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #E4F9E6;
  border-radius: 22px;
  transition: 0.2s;
}
.cookie-modal .toggle input:checked + .slider {
  background-color: #37A67E;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(28,42,73,0.16);
}
.cookie-modal .toggle input:checked + .slider:before {
  transform: translateX(16px);
}
/* modal buttons */
.cookie-modal .modal-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .modal-close {
  background: #1C2A49;
  color: #fff;
}
.cookie-modal .modal-close:hover {
  background: #37A67E; color: #fff200;
}
.cookie-modal .modal-save {
  background: #37A67E;
  color: #fff;
}
.cookie-modal .modal-save:hover {
  background: #03C6FA; color: #fff200;
}
/* MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  z-index: 2301;
  background: rgba(28,42,73,0.33);
  display: none;
}
.cookie-modal-backdrop.active {
  display: block;
}

/* FORM ELEMENTS */
input, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
input, textarea, select {
  outline: none;
  border: 1.5px solid #DDD;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 1rem;
  margin-bottom: 19px;
  background: #fff;
  color: #1C2A49;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #37A67E;
  background: #eaf9f6;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  color: #1C2A49;
}

/* TABLES (Optional, for resources/faq) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 17px;
  font-size: 1rem;
}
th, td {
  border: 1px solid #EAEAEA;
  padding: 10px 8px;
}
th {
  background: #E4F9E6;
  color: #1C2A49;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* ANIMATIONS FOR MICRO-INTERACTIONS */
.cta-primary, .cookie-banner button {
  transition: background 0.2s, color 0.2s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 26px 0 rgba(3,198,250,0.16);
  transform: translateY(-4px) scale(1.011);
}

/* UTILITIES */
.ml-1 { margin-left: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-1 { margin-top: 8px; }
.text-center {text-align: center;}

/* RESPONSIVE QUERIES -- MOBILE FIRST, LAYOUT FLEX DIRECTIONS MOSTLY COLUMN */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding: 0 4vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .features .content-wrapper ul,
  .services-list .content-wrapper ul,
  .service-details .content-wrapper ul,
  .services-preview .content-wrapper ul {
    gap: 12px;
  }
  header nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 39px 0 23px 0; }
  .section { padding: 29px 8px; margin-bottom: 35px; }
  .features .content-wrapper ul,
  .services-list .content-wrapper ul,
  .service-details .content-wrapper ul,
  .services-preview .content-wrapper ul {
    flex-direction: column;
    gap: 14px;
  }
  .features .content-wrapper li,
  .services-list .content-wrapper li,
  .service-details .content-wrapper li,
  .services-preview .content-wrapper li {
    padding-left: 62px;
    min-width: 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card { padding: 16px; }
  footer .container { flex-direction: column; padding: 0 4vw; gap: 20px; }
}
@media (max-width: 660px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 11px 6px;
    gap: 5px;
  }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .newsletter-signup form {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
@media (max-width:480px) {
  h1 { font-size: 1.25rem; }
  .container { padding: 0 3vw; }
  .hero h1, .hero h2 { font-size: 1.15rem; }
  .testimonial-card { font-size: 0.97rem; }
  .cta-primary { font-size: 1rem; padding: 11px 12px; }
  .card, .card-content { padding: 15px 8px; }
}

/* VIBRANT ENERGETIC COLORS & EFFECTS */
/* Add pops of color/focus borders for energetic vibe */
.card:after, .testimonial-card:after {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 6px;
  background: #FFC300;
  position: absolute;
  left: 22px;
  bottom: 12px;
  opacity: 0.7;
  pointer-events: none;
}
.card:hover:after, .testimonial-card:hover:after {
  background: #F50F57;
  opacity: 1;
}
.cta-primary:active {
  background: #F50F57;
  color: #fff200;
}

/* Hide unnecessary display grid/columns properties entirely as per strict rules. */
