/* ========================== 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, menu, 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, 
main, 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;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1F1E6;
  color: #205072;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #329D9C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #205072;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
  color: inherit;
}
button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #329D9C;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #205072; }
::-moz-placeholder { color: #205072; opacity:1; }
:-ms-input-placeholder { color: #205072; }
::placeholder { color: #205072; }


/* =================== TYPOGRAPHY / MODERN_BOLD =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #205072;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #329D9C;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #205072;
}
p, li, ul, ol, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #205072;
  margin-bottom: 10px;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 800;
  color: #205072;
}
em {
  font-style: italic;
  color: #205072;
}

/* =============== MAIN LAYOUT CONTAINERS & SECTIONS =============== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(32, 80, 114, 0.09);
  position: relative;
  transition: box-shadow .2s;
}
.section:hover, main > section:hover {
  box-shadow: 0 10px 40px 0 rgba(50, 157, 156, 0.11);
}
@media (max-width: 900px) {
  .section, main > section {
    margin-bottom: 38px;
    padding: 28px 8px;
    border-radius: 16px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 600px) {
  .content-wrapper {
    gap: 20px;
  }
}

.text-section {
  margin-bottom: 20px;
}
.text-section p {
  color: white;
}
.text-section:last-child {
  margin-bottom: 0;
}


/* ========================== NAVIGATION ============================ */
header {
  background: #205072;
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 24px;
  min-height: 70px;
}
header nav > a img {
  height: 38px;
  width: auto;
  margin-right: 18px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  padding: 4px 0;
  transition: color .2s, border-color .2s;
  border-bottom: 3px solid transparent;
}
nav ul li a:hover,
nav ul li a:focus,
nav ul li.active a {
  color: #37e2d5;
  border-bottom: 3px solid #329D9C;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: #329D9C;
  color: #fff;
  padding: 12px 30px;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(50,157,156,.09);
  border: none;
  text-transform: uppercase;
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .1s;
  margin-left: 18px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #205072;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 22px 0 rgba(32,80,114,.14);
  text-decoration: none;
}

/* ------ Mobile Nav Hamburger ------ */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    z-index: 102;
    cursor: pointer;
    padding: 10px 18px;
    margin-left: auto;
    transition: color 0.2s, transform 0.19s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    color: #37e2d5;
    transform: scale(1.09);
  }
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32, 80, 114, 0.95);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 46px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.1rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1400;
  transition: color .17s, transform .12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFBF00;
  transform: scale(1.1);
}
.mobile-nav {
  margin-top: 24px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  background: #329D9C;
  border-radius: 20px;
  padding: 14px 28px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 4px 18px 0 rgba(50,157,156,.11);
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s, transform .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1F1E6;
  color: #205072;
  text-decoration: none;
  transform: translateY(-2px);
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ===================== MAIN CONTENT FLEX LAYOUTS ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(32,80,114,0.08);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow .17s, transform .12s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(32,80,114,0.14);
  transform: translateY(-3px) scale(1.015);
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}

/* ========== TESTIMONIALS =========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6fafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(32,80,114,0.07);
  border-left: 6px solid #329D9C;
  font-size: 1.13rem;
  color: #205072;
  transition: box-shadow .16s, border-color .2s;
}
.testimonial-card strong {
  color: #205072;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(50,157,156,0.13);
  border-left-color: #205072;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ========== LISTS & UL/OL =========== */
ul, ol {
  margin-left: 24px;
  margin-bottom: 10px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #205072;
}
ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
ol {
  counter-reset: numbers;
}
ol li {
  counter-increment: numbers;
}
ol li::before {
  content: counter(numbers) '.';
  position: absolute;
  left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #329D9C;
  font-size: 1rem;
  width: 24px;
  text-align: right;
}

/* ========== FOOTER =========== */
footer {
  background: #205072;
  color: #fff;
  padding: 46px 0 18px 0;
  width: 100%;
  margin-top: 40px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding-bottom: 2px;
  border-bottom: 2.5px solid transparent;
  transition: color .18s, border-color .14s;
}
footer nav a:hover, footer nav a:focus {
  color: #37e2d5;
  border-bottom: 2.5px solid #329D9C;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 18px;
  font-size: 0.95rem;
  color: #F1F1E6;
}
.footer-info a {
  color: #F1F1E6;
  text-decoration: underline;
  transition: color .15s;
}
.footer-info a:hover, .footer-info a:focus {
  color: #37e2d5;
}
@media (max-width: 700px) {
  .footer-info {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  footer .container {
    padding: 0 10px;
  }
}


/* =============================== COOKIE BANNER =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #205072;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  z-index: 2000;
  padding: 20px 16px;
  box-shadow: 0 -6px 36px rgba(32,80,114,0.17);
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.40s cubic-bezier(0.77,0,0.175,1), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
}
.cookie-banner .cookie-btn {
  background: #329D9C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 18px;
  padding: 10px 24px;
  margin-right: 8px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: background .2s, transform .12s, color .13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #205072;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #329D9C;
  border: 2px solid #329D9C;
  font-weight: 700;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #329D9C;
  color: #fff;
}

/* COOKIE MODAL (pop-up) */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(32,80,114,0.89);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-box {
  background: #fff;
  color: #205072;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(32,80,114, 0.12);
  max-width: 420px;
  width: 97vw;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: cookie-modal-bounce .32s ease;
}
@keyframes cookie-modal-bounce {
  from { transform: scale(.92) translateY(60px); opacity:.5; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 20px;
  background: none;
  font-size: 2rem;
  color: #205072;
  border: none;
  cursor: pointer;
  transition: color .12s, transform .10s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #329D9C;
  transform: scale(1.13);
}
.cookie-modal h2 {
  color: #205072;
  font-size: 1.56rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 700;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #329D9C;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label { color: #329D9C; }
.cookie-category.essential input {
  accent-color: #205072;
  pointer-events: none;
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
}
@media (max-width: 600px) {
  .cookie-modal-box {
    padding: 20px 8px 16px 8px;
    border-radius: 14px;
  }
  .cookie-categories { gap: 10px; }
}


/* ============= BUTTONS / INTERACTIVE ELEMENTS ============= */
button, .cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background .2s, color .12s, box-shadow .14s, transform .12s;
}


/* =================== VISUAL BOLD ELEMENTS =================== */
.section {
  border-left: 8px solid #329D9C;
  position: relative;
  overflow: hidden;
}
.section::before, .section::after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.section::before {
  right: -60px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: #329D9C;
  opacity: 0.12;
}
.section::after {
  left: -60px;
  bottom: -80px;
  width: 130px;
  height: 130px;
  background: #205072;
  opacity: 0.11;
}
@media (max-width: 600px) {
  .section {
    border-left-width: 5px;
    border-radius: 11px;
  }
  .section::before, .section::after { display: none; }
}

/* ================= RESPONSIVE TYPOGRAPHY, SPACING & UTILITIES ================= */
@media (max-width: 1080px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.05rem; }
}
@media (max-width: 700px) {
  html { font-size: 15px; }
  .section, main > section { padding: 18px 1vw; }
  .testimonial-card { padding: 15px; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  h1, h2 { font-size: 1.15rem; }
  footer img { height: 36px; }
}

/* =============== MISC. BOLD / GEOMETRIC DETAILS =============== */
.section > .container { position: relative; }
hr {
  border: none;
  border-top: 2.5px solid #329D9C;
  margin: 30px 0;
}

/* =============== HIGHLIGHTED TEXTS & ICONS ================ */
highlight, .highlight {
  background: #329D9C;
  color: #fff;
  border-radius: 8px;
  padding: 3px 10px;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ================= FORM STYLES (FOR FUTURE USE) ================= */
input, select, textarea {
  border: 2px solid #329D9C;
  border-radius: 8px;
  background: #F1F1E6;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border-color .17s;
}
input:focus, select:focus, textarea:focus {
  border-color: #205072;
}

/* ============== UTILITY: FLEX LAYOUTS FOR BLOCKS ============= */
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* SPACING ENFORCEMENT BETWEEN CARDS/SECTIONS */
.card,
.content-wrapper > .testimonial-card,
.content-wrapper > .text-section,
.content-wrapper > ul,
.content-wrapper > ol,
.content-wrapper > .feature-item {
  margin-bottom: 20px;
}

/* =============== ACCESSIBILITY SUPPORTS =============== */
:focus-visible {
  outline: 2.5px solid #FFBF00;
  outline-offset: 3px;
}


/* ====== PRINT FRIENDLY (White BG, Strong Text Color) ======= */
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}
