/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F7F6;
  color: #2d2b2b;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  transition: background 0.3s;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
a {
  color: #245972;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b46549;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.55em;
  font-size: 1rem;
}
p {
  margin-bottom: 1.1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294544;
  margin-bottom: 0.77em;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
strong {
  font-weight: bold;
}
blockquote {
  background: #FCE9DA;
  color: #532A10;
  padding: 16px 24px;
  border-left: 5px solid #F6A06A;
  border-radius: 20px 10px 10px 20px;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.7em;
}

/* BRAND & COMMON COLORS */
:root {
  --color-primary: #245972;
  --color-secondary: #8FC7BC;
  --color-accent: #F2F7F6;
  --color-warm-bg: #FCE9DA;
  --color-warm-accent: #F6A06A;
  --color-button: #F6A06A;
  --color-button-hover: #ec6e3d;
  --color-neutral-900: #2d2b2b;
  --color-neutral-700: #294544;
  --color-neutral-500: #8FC7BC;
  --color-white: #fff;
}

/* SPACING */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* NAVIGATION & HEADER */
header {
  background: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 36px rgba(36, 89, 114, 0.13);
  position: sticky;
  top: 0;
  z-index: 40;
  padding-bottom: 0.5rem;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 18px;
}
header nav img {
  height: 48px;
  border-radius: 12px;
  margin-right: 12px;
}
header nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
header nav ul li {
  margin-bottom: 0;
}
header nav ul li a,
header nav a {
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.93;
  padding: 8px 12px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  display: block;
  transition: background 0.15s, color 0.18s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: var(--color-warm-bg);
  color: var(--color-primary);
  opacity: 1;
  text-decoration: none;
}
.cta-primary {
  background: var(--color-button);
  color: var(--color-white) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 12px 30px;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(246, 160, 106, 0.13);
  border: none;
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, transform 0.10s;
  display: inline-block;
  margin-left: 10px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-button-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(246, 160, 106, 0.22);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-button);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  padding: 8px 16px;
  border-radius: 50%;
  margin-left: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(246, 160, 106, 0.08);
  transition: background 0.2s, color 0.20s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-warm-accent);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  background: var(--color-white);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 150;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.55,.06,.46,.95);
  box-shadow: 0 0 60px 0 rgba(36,89,114,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 28px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 36px;
  background: var(--color-button);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(246, 160, 106, 0.10);
  z-index: 3;
  transition: background 0.15s, color 0.15s, transform 0.05s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-warm-accent);
  color: #fff;
  transform: scale(1.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 64px;
  width: 100%;
}
.mobile-nav a {
  color: #245972;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 16px 8px;
  border-radius: 28px;
  transition: background 0.11s, color 0.11s;
  text-align: left;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm-accent);
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(120deg, #FCE9DA 78%, #F6A06A 120%);
  border-radius: 0 0 36px 36px;
  margin-bottom: 48px;
  padding: 60px 0 40px 0;
  box-shadow: 0 10px 52px 0 rgba(36,89,114,.10);
}
.hero-section .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: #245972;
  letter-spacing: -1px;
}
.hero-section p {
  color: #85613a;
  font-size: 1.2rem;
  max-width: 540px;
  margin: 0 auto;
}

/* FEATURE GRID & FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 20px 0;
}
.feature-grid > div {
  flex: 1 1 260px;
  min-width: 250px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 2px 18px rgba(36, 89, 114, 0.08);
  transition: box-shadow 0.18s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 30px rgba(246, 160, 106, 0.16);
  transform: translateY(-5px) scale(1.017);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 7px;
  background: #FCE9DA;
  border-radius: 16px;
  display: block;
}


/* Spacing Patterns for Provided Classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(36,89,114,0.12);
  display: flex;
  flex-direction: column;
}
.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;
  background: #FEF5EE;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(246,160,106,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  margin: 0;
  background: none;
  color: #245972;
  border: none;
  font-size: 1.15rem;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #6b3413;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cards */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em 1.2em;
  gap: 10px;
}

/* TEXT-SECTION (About, GDPR, Policy, etc) */
.text-section {
  background: #fff3ec;
  border-radius: 18px;
  padding: 24px 20px;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.text-section h3 {
  font-size: 1.1rem;
  margin-top: 18px;
  color: #79451e;
}
.text-section ul, .text-section ol {
  margin-bottom: 1.1em;
}
.text-section a {
  color: #245972;
}
.text-section a:hover, .text-section a:focus {
  color: #b46549;
}

/* BADGES, TRUST ICONS */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 16px;
}
.trust-badges img {
  height: 42px;
  width: 42px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(245, 160, 106, 0.06);
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 36px 0 16px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 58px;
  box-shadow: 0 -2px 18px rgba(36, 89, 114, 0.12);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #f2f7f6;
  opacity: 0.85;
  font-size: 1rem;
  border-radius: 14px;
  transition: background 0.15s, color 0.14s;
  padding: 4px 10px;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-warm-accent);
  color: #fff;
  opacity: 1;
}
.footer-info {
  max-width: 230px;
  line-height: 1.6;
  color: #fdf8f3;
}
.footer-info img {
  height: 48px;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-social span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #eed9c5;
}
.footer-social a img {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 8px rgba(245, 160, 106, 0.07);
  height: 34px;
  width: 34px;
  margin-right: 10px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.footer-social a:hover img {
  box-shadow: 0 4px 18px rgba(246, 160, 106, 0.17);
  transform: scale(1.12);
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FCE9DA;
  color: #52351D;
  z-index: 9999;
  box-shadow: 0 -4px 32px rgba(246, 160, 106, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 14px 18px 14px;
  font-size: 1rem;
  transition: transform 0.45s cubic-bezier(.22,.2,.42,1.02);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-button,
.cookie-settings-button {
  background: var(--color-button);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin: 0 3px;
  transition: background 0.18s, box-shadow 0.17s, color 0.18s;
  box-shadow: 0 1px 13px rgba(246, 160, 106, 0.09);
}
.cookie-button:hover,
.cookie-settings-button:hover,
.cookie-button:focus,
.cookie-settings-button:focus {
  background: var(--color-button-hover);
  color: #fff;
}
.cookie-settings-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  background: #fff;
  box-shadow: 0 10px 60px rgba(36,89,114,0.20);
  border-radius: 20px;
  z-index: 10001;
  width: 95vw;
  max-width: 390px;
  padding: 28px 24px 24px 24px;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -70%);} to { opacity: 1; transform: translate(-50%, -56%);}
}
.cookie-settings-modal.open {
  display: flex;
}
.cookie-modal-header {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #245972;
  font-weight: 700;
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.cookie-toggle {
  accent-color: var(--color-button);
  width: 18px;
  height: 18px;
}
.cookie-category-label {
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-close {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  padding: 6px 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: var(--color-warm-accent);
}

/* -------- Responsive: Mobile First -------- */
@media (max-width: 1100px) {
  .feature-grid > div {
    flex: 1 1 180px;
    min-width: 170px;
    padding: 22px 12px 20px 12px;
  }
}
@media (max-width: 900px) {
  .footer-info, .footer-social {
    max-width: 230px;
  }
  footer .content-wrapper {
    gap: 21px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 34px;
    border-radius: 22px;
  }
  .hero-section {
    padding: 40px 0 20px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 24px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
    padding: 18px 9px 13px 9px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 13px;
    border-radius: 14px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  footer {
    padding: 22px 0 8px 0;
    border-radius: 13px 13px 0 0;
    margin-top: 20px;
  }
  .footer-info img {
    height: 36px;
  }
  .footer-social a img {
    height: 30px; width: 30px;
  }
}
@media (max-width: 660px) {
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 6px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.2rem;}
  h2 { font-size: 1rem;}
  .hero-section p, p, .text-section, .footer-info, .footer-social span {
    font-size: 0.95rem;
  }
}

/* ---------- Micro-Interactions ---------- */
button, [type=button] {
  outline: none;
  box-shadow: 0 1px 6px rgba(36, 89, 114, 0.08);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.14s, background 0.14s, transform 0.09s;
}
button:active, [type=button]:active {
  box-shadow: 0 1px 10px rgba(246,160,106,0.10);
  transform: scale(0.98);
}

/* Misc Small Tweaks */
::-webkit-scrollbar {
  width: 12px;
  background: #FCE9DA;
}
::-webkit-scrollbar-thumb {
  background: #F6A06A;
  border-radius: 8px;
}
::selection {
  background: #FFE2BE;
}

/* Hide visually if needed but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Ensure NO GRID or COLUMNS!!! */
/* Only flex layouts are used */
