/* 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(120deg, #F2EDE9 0%, #e5e9f2 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #14475C;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BRAND COLORS */
:root {
  --primary: #14475C;
  --secondary: #74A393;
  --accent: #F2EDE9;
  --gradient-dark: #14475C;
  --gradient-light: #74A393;
  --gray-bg: #F8F9FB;
  --text-dark: #14475C;
  --text-light: #fff;
  --shadow: 0 4px 24px rgba(20,71,92,0.09), 0 1.5px 4px rgba(20,71,92,0.06);
  --border-radius: 18px;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.23;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--secondary);
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, address, blockquote {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: var(--secondary);
}
a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--primary);
  text-decoration: none;
}
ul, ol {
  padding-left: 20px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION SPACING – as required */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}

/* CARD LAYOUTS AND FLEX-PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(20,71,92,0.14);
  transform: translateY(-3px) scale(1.020);
}
.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;
}
/* Feature List Patterns */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 24px;
  max-width: 650px;
  color: var(--primary);
  position: relative;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.6;
  quotes: "\201C" "\201D";
}
.testimonial-card cite {
  font-style: normal;
  font-size: 15px;
  color: var(--secondary);
  margin-left: 12px;
}

/* BUTTONS & PRIMARY CTAS */
.primary-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  background: linear-gradient(90deg, var(--gradient-dark) 0%, var(--gradient-light) 100%);
  border: none;
  border-radius: 32px;
  padding: 14px 38px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 14px rgba(20,71,92,0.13);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.025em;
  transition: background 0.25s, box-shadow 0.2s, transform 0.14s;
}
.primary-btn:hover,
.primary-btn:focus {
  background: linear-gradient(90deg, #205E73 0%, var(--secondary) 100%);
  box-shadow: 0 6px 24px rgba(20,71,92,0.17);
  transform: scale(1.030);
  color: #fff;
  outline: none;
}

/* PRICE TAGS */
.price {
  background: var(--secondary);
  color: #fff;
  border-radius: 12px;
  padding: 2px 10px;
  margin-left: 10px;
  font-weight: 700;
  font-size: 1rem;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(20,71,92,0.09);
  position: sticky;
  top: 0;
  z-index: 997;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
header nav a.primary-btn {
  color: #fff;
  margin-left: 14px;
  padding: 10px 26px;
  font-size: 1rem;
}
header nav a:hover:not(.primary-btn),
header nav a:focus:not(.primary-btn) {
  background: var(--gradient-light);
  color: #fff;
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 1101;
  margin-left: 12px;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 28px rgba(20,71,92,0.15);
  z-index: 1111;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(0.65,0.05,0.36,1);
  padding: 40px 28px 24px 28px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 22px;
  margin-top: -10px;
  padding: 4px 8px;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  background: none;
  border-radius: 18px;
  padding: 13px 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--gradient-dark);
  outline: none;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu,.mobile-menu-toggle {
    display: none !important;
  }
}

/* MOBILE OVERLAY (prevent background scroll when menu open) */
body.mobile-menu-open {
  overflow: hidden;
}

/* MAIN & HERO AREA */
main {
  width: 100%;
  padding-bottom: 32px;
}
section.hero, section:first-of-type {
  background: linear-gradient(98deg, #F2EDE9 32%, #e1f2ec 100%);
  border-bottom-left-radius: 60px 30px;
  border-bottom-right-radius: 90px 40px;
  box-shadow: 0 8px 32px rgba(20,71,92,0.05);
  min-height: 220px;
  display: flex;
  align-items: center;
}

/* LISTS, ICON STYLES, ETC */
ul li,
ol li {
  margin-bottom: 9px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
}
ul li strong,
ol li strong {
  color: var(--secondary);
}
section ul {
  list-style: disc inside;
}
/* Icon in list (for pages with icons) */
section ul li img {
  vertical-align: middle;
  margin-right: 9px;
  width: 25px;
  height: 25px;
  display: inline-block;
}

/* FOOTER */
footer {
  background: #14475C;
  color: #fff;
  padding: 0; /* container handles padding */
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 90px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-direction: row;
}
footer nav a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 16px;
  transition: background 0.19s, color 0.18s;
  text-decoration: none;
  padding: 6px 12px;
}
footer nav a:hover,
footer nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
}
footer address {
  color: #fff;
  font-style: normal;
  margin-bottom: 5px;
}
footer .contact-info img {
  width: 34px;
  margin-bottom: 4px;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .social-links a {
  display: flex;
  align-items: center;
  border-radius: 100%;
  background: #fff;
  padding: 6px;
  transition: background 0.2s, box-shadow 0.17s;
}
footer .social-links a img {
  width: 24px;
  height: 24px;
}
footer .social-links a:hover,
footer .social-links a:focus {
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(116,163,147,0.18);
}

/* RESPONSIVE DESIGN – MOBILE FIRST, FLUID TYPOGRAPHY AT BREAKPOINTS */
@media (max-width: 992px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
  section {
    padding: 32px 4px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  .section, section {
    padding: 22px 4px;
    margin-bottom: 36px;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
    text-align: left;
  }
  .card {
    min-width: unset;
    font-size: 0.98rem;
    padding: 18px 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    min-height: unset;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* FOCUS STATES */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* SMOOTH TRANSITIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .primary-btn, header nav a, .mobile-nav a, footer nav a, .feature-item {
  transition: box-shadow 0.20s, transform 0.18s, background 0.21s, color 0.18s;
}
.card:active { transform: scale(0.99); }

/* Z-INDEX LAYERING */
header { z-index: 997; }
.mobile-menu { z-index: 1111; }

/* UTILITY */
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -3px 18px rgba(20,71,92,0.13);
  border-top: 2px solid var(--secondary);
  padding: 24px 18px;
  z-index: 9900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  max-width: 100vw;
  transition: transform 0.32s cubic-bezier(0.64,0.07,0.36,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 20px;
  margin-right: 7px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.15s;
  box-shadow: 0 1.5px 7px rgba(20,71,92,0.08);
}
.cookie-banner .cookie-btn.reject {
  background: #c7c7c7;
  color: var(--primary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #ababab;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #205E73;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,71,92,0.22);
  z-index: 9910;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 26px rgba(20,71,92,0.19);
  padding: 38px 32px;
  max-width: 448px;
  width: 92vw;
  text-align: left;
  position: relative;
  animation: cookieModalIn 0.3s cubic-bezier(0.52,0.06,0.48,1.30);
}
@keyframes cookieModalIn { from { transform: translateY(60px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal h2 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.3rem;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
.cookie-modal .category-row:last-child {
  border-bottom: none;
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  background: #e5e7eb;
  border-radius: 16px;
  position: relative;
  transition: background 0.16s;
  margin-left: 12px;
}
.cookie-modal .toggle[aria-checked='true'] {
  background: var(--secondary);
}
.cookie-modal .toggle .knob {
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  box-shadow: 0 1px 2px rgba(20,71,92,0.11);
  transition: left 0.17s;
}
.cookie-modal .toggle[aria-checked='true'] .knob {
  left: 21px;
}
.cookie-modal .category-row .locked {
  color: #adadad;
  margin-left: 5px;
  font-size: 1.06rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .modal-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.cookie-modal .modal-btn.cancel {
  background: #b5b5b5;
  color: #fff;
}
.cookie-modal .modal-btn:hover,
.cookie-modal .modal-btn:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}
.cookie-modal .modal-btn.cancel:hover,
.cookie-modal .modal-btn.cancel:focus {
  background: #929292;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 4px;
  }
}

/* END - styles */
