/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
:root {
  --primary: #295C58;
  --secondary: #85B840;
  --accent: #E3F2FD;
  --pastel-blue: #B4E2E1;
  --pastel-green: #E3FCCE;
  --pastel-yellow: #FFF7C4;
  --pastel-pink: #FFDDEE;
  --pastel-lavender: #ECE8FA;
  --neutral-text: #213334;
  --white: #ffffff;
  --gray: #F9FBFD;
  --shadow: 0 2px 16px 0 rgba(41,92,88,0.07);
  --border-radius: 18px;
  --border-radius-s: 12px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--neutral-text);
  background: linear-gradient(120deg, var(--accent) 0%, var(--pastel-blue) 70%, var(--pastel-green) 100%);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.14;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 10px; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; font-weight: 600; }
p, li, span, strong {line-height: 1.65; color: var(--neutral-text); font-size: 1rem;}

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

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.logo {
  max-height: 40px;
}

.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-s);
  padding: 12px 30px;
  box-shadow: 0 2px 8px 0 rgba(41,92,88,0.09);
  transition: background 0.24s, color 0.24s, transform 0.12s;
  display: inline-block;
  border: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  background: var(--pastel-blue);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  z-index: 50;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(41,92,88,0.09);
  transition: box-shadow 0.18s;
}
.mobile-menu-toggle:active { box-shadow: 0 2px 6px 0 rgba(41,92,88,0.18); }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px 0 rgba(41,92,88,0.17);
  z-index: 100;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.84,.02,.52,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: var(--pastel-pink);
  color: var(--primary);
  border-radius: 50%;
  width: 48px; height: 48px;
  position: absolute;
  top: 18px; right: 22px;
  z-index: 110;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--pastel-blue); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 74px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  width: 100%;
  color: var(--primary);
  border-radius: 0 28px 28px 0;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

@media (max-width: 1000px) {
  header .container { gap: 12px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 830px) {
  .main-nav { gap: 8px; }
  .cta-btn { padding: 10px 18px; font-size: 0.95rem; }
  header .container { padding: 12px 8px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 10px;
    padding: 8px 10px;
  }
}

/* --- HERO SECTION --- */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 36px 0;
  background: linear-gradient(112deg, var(--pastel-blue) 60%, var(--accent) 100%);
  border-radius: 0 0 50px 50px;
  box-shadow: 0 4px 40px 0 rgba(41,92,88,.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero .content-wrapper {
  max-width: 680px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-top: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  background: none;
  margin-bottom: 10px;
}
.hero p {
  color: var(--primary);
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
.hero .cta-btn {
  margin-top: 14px;
  min-width: 190px;
}
@media (max-width: 620px) {
  .hero { border-radius: 0 0 24px 24px; padding: 32px 0 18px 0; }
  .hero h1 { font-size: 2rem; }
  .hero .container { gap: 20px; }
}

/* --- SECTIONS & LAYOUT --- */
.section {
  background: var(--white);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
section {
  margin-bottom: 60px;
  padding: 0px 0px;
}
@media (max-width: 600px) {
  .section, section { margin-bottom: 36px; padding: 18px 5px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: var(--pastel-lavender);
  border-radius: var(--border-radius-s);
  padding: 24px 18px;
  box-shadow: 0 1px 8px 0 rgba(41,92,88,.06);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 18px 0;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--border-radius-s);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  transition: box-shadow .19s, transform .12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 24px 0 rgba(41,92,88,0.12);
  transform: translateY(-2px) scale(1.019);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 600px) {
  .card { padding: 14px 7px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-yellow);
  border-radius: var(--border-radius-s);
  padding: 22px;
  box-shadow: 0 2px 14px 0 rgba(133,184,64,0.07);
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pastel-green);
  border-radius: var(--border-radius-s);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px 0 rgba(41,92,88,0.08);
  flex-wrap: wrap;
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--neutral-text);
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card { padding-left: 10px; padding-right: 10px; }
}

/* --- BUTTONS & LINKS --- */
button, .cta-btn {
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.2s, color 0.18s, transform 0.12s;
}
a:hover, a:focus, .cta-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/* --- FOOTER --- */
footer {
  background: var(--pastel-blue);
  width: 100%;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 26px 0 rgba(41,92,88,.07);
  padding: 36px 0 0 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-pink);
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-brand img {
  height: 42px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 600px) {
  footer { border-radius: 12px 12px 0 0; padding: 18px 0 0 0; }
  .footer-nav { gap: 10px; }
}

/* --- FLEXBOX VERIFICATION CONTAINERS --- */
/* Provided patterns, exact class matches */
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius-s);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 38px;
  z-index: 2000;
  width: calc(100% - 44px);
  max-width: 410px;
  font-size: 0.96rem;
  animation: fadeInCookieB .65s cubic-bezier(.6,.4,.4,1);
}
@keyframes fadeInCookieB {0%{opacity:0;transform:translateY(25px) translateX(-50%);}100%{opacity:1;transform:translateY(0) translateX(-50%);}}
.cookie-banner p {
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--neutral-text);
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-banner button {
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 1px 8px 0 rgba(41,92,88,0.07);
  transition: background 0.15s, color 0.13s;
  margin-left: 0;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #b0e869;
  color: var(--primary);
}
.cookie-banner .reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--pastel-lavender);
}
.cookie-banner .settings {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--pastel-green);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 20px 11px; font-size: 0.97rem; bottom: 10px; width: calc(100% - 12px);}
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(41,92,88,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieM .45s cubic-bezier(.62,.39,.38,1);
}
@keyframes fadeInCookieM {0%{opacity:0;}100%{opacity:1;}}
.cookie-modal .modal {
  background: var(--white);
  border-radius: var(--border-radius);
  min-width: 320px;
  max-width: 98vw;
  padding: 34px 36px 24px 36px;
  box-shadow: 0 8px 38px 0 rgba(41,92,88,0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popUpModal .43s cubic-bezier(.68,0,.38,1);
}
@keyframes popUpModal {0%{transform:scale(0.92);opacity:0;}100%{transform:scale(1);opacity:1;}}
.cookie-modal h2 { margin-bottom: 0px; }
.cookie-modal .modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}
.cookie-modal .modal-category label {
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: var(--pastel-blue);
  outline: none;
  position: relative;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle:disabled,
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  background: var(--pastel-green);
  opacity: 0.8;
}
.cookie-modal .cookie-toggle::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 1px; left: 2px;
  box-shadow: 0 1px 4px 0 rgba(41,92,88,0.06);
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 16px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 9px 23px;
  border-radius: 8px;
}
.cookie-modal .modal-actions .accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .modal-actions .reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-modal .modal-actions .close {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-modal .modal-actions .accept:hover, .cookie-modal .modal-actions .accept:focus { background: #b0e869; color: var(--primary); }
.cookie-modal .modal-actions .reject:hover, .cookie-modal .modal-actions .reject:focus { background: var(--pastel-green); color: var(--primary); }
.cookie-modal .modal-actions .close:hover, .cookie-modal .modal-actions .close:focus { background: var(--pastel-lavender); color: var(--primary); }
@media (max-width: 480px) {
  .cookie-modal .modal { min-width: 0; padding: 20px 8px 14px 8px; }
  .cookie-modal .modal-actions { flex-direction: column; gap: 9px; }
}

/* --- GENERAL SPACING --- */
section,
.section,
.section + section {
  margin-bottom: 60px;
}
.content-wrapper > * {
  margin-bottom: 10px;
}
.content-wrapper > *:last-child {
  margin-bottom: 0;
}
.card + .card {
  margin-top: 20px;
}
@media (max-width: 600px) {
  section, .section { margin-bottom: 34px; }
}

ul { padding-left: 0; }
ul > li { margin-bottom: 12px; }
ul > li:last-child { margin-bottom: 0; }
strong { color: var(--primary); font-weight: 600; }

/* --- FORMS (if any, reused for future) --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--border-radius-s);
  border: 1px solid var(--pastel-blue);
  padding: 11px 12px;
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 16px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  background: var(--pastel-yellow);
}
label {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 3px;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- ANIMATION HELPERS --- */
.fade-in {
  animation: fadeIn 0.65s cubic-bezier(.5,.18,.4,1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- SCROLLBAR PASTEL --- */
::-webkit-scrollbar {
  width: 11px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-lavender);
  border-radius: 18px;
}

/* --- ACCESSIBILITY (Focus) --- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* --- ACCESSIBLE HOVER STATES --- */
.card:focus-within, .cta-btn:focus {
  box-shadow: 0 0 0 2px var(--secondary), 0 2px 16px 0 rgba(41,92,88,0.09);
}

/* --- PRINT BRAND FONTS (FALLBACK if not loaded externally) --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}

/* --- OTHER Responsive Tweaks --- */
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .footer-contact { font-size: 0.9rem; }
}

/* --- END OF CSS --- */
