/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6, strong { font-weight: 700; }

/* FONT IMPORT (You must load in HTML/Google Fonts) */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5FAFF;
  color: #204060;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; letter-spacing: -1px; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
}

p, li {
  font-size: 1rem;
  color: #204060;
  margin-bottom: 12px;
}

strong { color: #15B785; font-weight: 700; }

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

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  background: linear-gradient(120deg, #F5FAFF 0%, #E4F7F3 100%);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(32,64,96,0.06);
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(32,64,96,0.15);
  transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
  width: 40px; height: 40px; margin-bottom: 16px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(90deg, #15B785 0%, #0D8E6A 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(21,183,133,0.08);
  transition: background 0.22s, box-shadow 0.22s, transform 0.2s;
  margin-top: 16px;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #0D8E6A 0%, #15B785 100%);
  box-shadow: 0 8px 24px rgba(21,183,133,0.18);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

main {
  flex: 1 0 auto;
  padding-bottom: 32px;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #204060 0%, #15B785 180%);
  color: #fff;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 20px;
  gap: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
}
.main-nav a {
  color: #fff;
  transition: color 0.2s, text-shadow 0.22s;
  font-weight: 500;
  margin-right: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #15B785;
  text-shadow: 0 2px 8px rgba(21,183,133,0.24);
}
.main-nav img {
  height: 36px; width: auto;
  margin-right: 18px;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 110;
  transition: background 0.17s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(32,64,96,0.10);
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #204060;
  color: #fff;
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.88,.03,.36,.91);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 28px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 9px;
  right: 22px;
  z-index: 2100;
  transition: color 0.15s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #15B785; outline: none; }
.mobile-nav { display: flex; flex-direction: column; gap: 28px; }
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  font-weight: 500;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover { color: #15B785; outline: none; }

@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .main-nav {
    justify-content: flex-start;
    gap: 28px;
    font-size: 1.07rem;
  }
}
@media (max-width: 899px) {
  .main-nav a:not(:first-child) { display: none; }
  .main-nav img { margin-right: 0; }
}

/* Main Spacing/Content Rules */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: 20px 20px 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(32,64,96,0.10);
  margin-bottom: 20px;
  max-width: 650px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(32,64,96,0.13);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card strong {
  font-size: 1rem;
  color: #204060;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Stars styling for testimonials */
.testimonial-card span {
  font-size: 1.3rem;
  color: #15B785;
  display: block;
  margin-bottom: 7px;
}
.testimonial-card p {
  color: #204060;
}

/* For proper color contrast in testimonial/review sections */
.testimonial-card, .testimonial-card p, .testimonial-card strong, .testimonial-card span {
  color: #204060 !important;
}

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

/***** RESPONSIVE FLEX LAYOUTS *****/
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .section, section { padding: 28px 8px; margin-bottom: 44px; }
  .feature-grid, .content-grid { gap: 15px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .footer-nav, .footer-contact { flex-direction: column; align-items: flex-start; gap: 13px; }
}

/***** DETAILS (FAQ) *****/
details {
  margin-bottom: 20px;
  background: #E4F7F3;
  border-radius: 14px;
  padding: 14px 20px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 8px rgba(21,183,133,0.05);
}
details[open] {
  box-shadow: 0 8px 24px rgba(21,183,133,0.08);
  background: #D5F5EB;
}
details summary {
  font-weight: 600;
  color: #204060;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  padding-bottom: 6px;
  transition: color 0.17s;
}
details summary:hover { color: #15B785; }
details p { margin: 10px 0 3px 0; }

/***** LINKS *****/
a {
  color: #204060;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.16s;
}
a:hover, a:focus { color: #15B785; outline: none; text-decoration: underline; }
.footer-nav a { color: #204060; font-weight: 500; padding-right: 12px; }
.footer-nav a:hover, .footer-nav a:focus { color: #15B785; text-decoration: underline; }

/***** FOOTER *****/
footer {
  background: linear-gradient(90deg, #F5FAFF 75%, #E4F7F3 100%);
  color: #204060;
  padding: 28px 0 18px 0;
  border-top: 1px solid #d3e8f5;
  box-shadow: 0 -3px 18px rgba(32,64,96,0.08);
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 11px;
  padding: 0 20px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #204060;
  margin-bottom: 0;
}
.footer-contact img {
  width: 19px; height: 19px;
}

/***** THANKYOU SCREEN *****/
.thankyou {
  background: #E4F7F3;
  border-radius: 18px;
  padding: 32px 28px;
  margin-top: 21px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(21,183,133,0.06);
}
.thankyou h2 { margin-bottom: 13px; }

/***** CONTACT INFO & MAP NOTE *****/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 18px 0;
}
.contact-info img {
  width: 20px; height: 20px; margin-right: 7px;
  vertical-align: middle;
}
.map-note {
  margin-top: 22px;
  font-weight: 600;
}

/***** LISTS *****/
ul, ol {
  margin-left: 22px;
  margin-bottom: 17px;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 6px;
  color: #204060;
}
ul li strong, ol li strong { color: #15B785; font-weight: 700; }

/***** MODALS/ANIMATIONS *****/
.fade-enter { opacity: 0; transition: opacity 0.22s; }
.fade-enter-active { opacity: 1; }

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #204060; /* dark blue */
  color: #fff;
  z-index: 3000;
  box-shadow: 0 -3px 24px rgba(32,64,96,0.13);
  padding: 22px 0 19px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.98rem;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; }
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: #15B785;
  color: #fff;
  border-radius: 24px;
  padding: 10px 24px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 0;
  transition: background 0.18s, color 0.14s, transform 0.12s;
}
.cookie-btn.secondary {
  background: #E4F7F3;
  color: #204060;
}
.cookie-btn.settings {
  background: #204060;
  color: #fff;
  border: 1px solid #15B785;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #0D8E6A;
  color: #fff;
  outline: none;
  transform: scale(1.04);
}

.cookie-modal-overlay {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  background: rgba(32,64,96,0.38);
  z-index: 3200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 36px rgba(32,64,96,0.20);
  max-width: 410px;
  width: 96vw;
  padding: 38px 28px 26px 28px;
  color: #204060;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  animation: cookieModalPop 0.24s cubic-bezier(.71,-0.12,.5,1.35);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.89); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #204060;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category span {
  font-size: 1rem;
  color: #204060;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #15B785;
  border-radius: 4px;
}
.cookie-category input[type='checkbox'][disabled] { opacity: 0.44; }
.cookie-modal-close {
  font-size: 1.7rem; color: #204060; background: none;
  border: none; position: absolute; top: 18px; right: 22px;
  cursor: pointer; transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #15B785; outline: none; }

/* Animations for cookie banner and modal */
@media (max-width:480px) {
  .cookie-modal { padding: 22px 8px 14px 10px; }
  .cookie-banner { font-size: 0.92rem; padding: 17px 5px 13px 5px; gap: 11px; }
  .cookie-btn { padding: 8px 15px; font-size: 0.92rem; }
}

/***** UTILITY CLASSES *****/
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.gap-30 { gap: 30px !important; }
.m-b-20 { margin-bottom: 20px !important; }
.radius-18 { border-radius: 18px !important; }
.bg-accent { background: #F5FAFF !important; }

/***** # ACCESSIBILITY + FOCUS INDICATION *****/
:focus-visible { outline: 2px solid #15B785; outline-offset: 2px; }

/* SMOOTH TRANSITIONS FOR INTERACTIVE ELEMENTS */
button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, details,
.testimonial-card, .feature-grid > div, .main-nav a, .mobile-nav a {
  transition: all 0.2s cubic-bezier(.79,-0.26,.38,1.32);
}

/***** OVERRIDES: ENSURE NO UNINTENDED OVERLAPPING *****/
.testimonial-card, .feature-grid > div, .card {
  margin-right: 0 !important;
}

/* Prevent content overlap with cookie banner */
body { padding-bottom: 70px; min-height: 100vh; }

/***** END OF STYLE.CSS *****/
