/* --- RESET & BASE --- */
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, 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;
  scroll-behavior: smooth;
  background: #F9F9F7;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F9F9F7;
  color: #20314A;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #20314A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A824;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px 0;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:700,900&family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #20314A;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 {font-size: 2.5rem;}
h2 {font-size: 2rem;}
h3 {font-size: 1.4rem;}
h4 {font-size: 1.15rem;}
p, li, cite, blockquote, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
strong {
  font-weight: 700;
}

/* --- CONTAINERS & SPACING --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 28px;
  box-shadow: 0px 5px 32px 0 rgba(244,168,36,0.11), 0 1.5px 4px 0 rgba(32,49,74,0.05);
}

/* --- FLEXBOX MANDATE --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(244,168,36,.08);
  transition: box-shadow 0.22s, transform 0.16s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 360px;
}
.card:hover {
  box-shadow: 0 7px 30px 0 rgba(244,168,36,.18);
  transform: translateY(-4px) rotate(-1.5deg) scale(1.025);
}
.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;
  border-radius: 20px;
  background: #fffbe8;
  box-shadow: 0 2px 14px 0 rgba(32,49,74,0.07);
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background-color: #F4A824;
  background-image: linear-gradient(100deg, #F4A824 80%, #fbc74e 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 2px 24px 0 rgba(244,168,36, .09);
  padding-top: 40px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  overflow: hidden;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1, .hero p {
  color: #20314A;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

/* --- BUTTONS --- */
.cta-primary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  color: #20314A;
  background: #F4A824;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(244,168,36,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
  margin-top: 16px;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #20314A;
  color: #fffbe8;
  box-shadow: 0 4px 32px 0 rgba(32,49,74,.17);
  transform: scale(1.045) rotate(-2deg);
  text-decoration: none;
}

/* --- MAIN NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,49,74,0.05);
  position: relative;
  z-index: 1070;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  padding: 17px 20px;
  position: relative;
  font-size: 1.06rem;
  background: none;
}
.main-nav img {
  width: 36px;
  height: 36px;
  margin-right: 16px;
}
.main-nav a {
  padding: 6px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s; 
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4A824;
  color: #20314A!important;
  text-decoration: none;
  box-shadow: 0 1.5px 12px 0 rgba(244,168,36,0.14);
}
.main-nav .cta-primary {
  background: #20314A;
  color: #fff;
  border-radius: 30px;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(32,49,74, 0.11);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  color: #fffbe8;
  background: #F4A824;
}

/* --- MOBILE NAVIGATION (BURGER MENU) --- */
.mobile-menu-toggle {
  display: none;
  background: #fffbe8;
  color: #20314A;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 13px;
  right: 20px;
  box-shadow: 0 0.5px 8px 0 rgba(32,49,74,0.07);
  transition: background 0.18s;
  cursor: pointer;
  z-index: 1100;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4A824;
}
.mobile-menu {
  position: fixed;
  z-index: 10700;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe8;
  box-shadow: 0 0 0 99999px rgba(32,49,74,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.67,.17,.41,1.07);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #20314A;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  padding: 8px 12px;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  background: #F4A824;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #20314A;
  padding: 12px 0;
  border-radius: 20px;
  transition: background 0.17s, color 0.17s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A824;
  color: #20314A;
}

/* --- SECTIONS, CARDS, TESTIMONIALS --- */
ul {
  margin-bottom: 16px;
  padding-left: 18px;
  list-style: disc outside;
}
ol {
  margin-bottom: 16px;
  padding-left: 23px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 16px;
  padding-left: 0.5em;
}
ul li img {
  width: 32px;
  vertical-align: middle;
  margin-right: 12px;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fef7e4;
  border-left: 5px solid #F4A824;
  margin: 0 0 8px 0;
  padding: 12px 20px 12px 18px;
  font-size: 1.13rem;
  border-radius: 18px;
  color: #20314A;
  box-shadow: 0 1.5px 9px 0 rgba(244,168,36,.07);
  position: relative;
}
cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.98em;
  color: #F4A824;
}
.testimonial-card blockquote {
  border-left: 0;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.testimonial-card cite {
  margin-left: 10px;
}

.section ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  background: rgba(244,168,36,0.075);
  border-radius: 14px;
  padding: 12px 14px;
  min-height: 48px;
  position: relative;
  font-size: 1.01rem;
}
.section ul li strong {
  font-size: 1.08rem;
  margin-right: 8px;
  color: #20314A;
}

/* --- FOOTER --- */
footer {
  background: #20314A;
  color: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -3px 28px 0 rgba(32,49,74,0.11);
  margin-top: 60px;
  padding: 32px 0 22px 0;
}
footer .container {
  flex-direction: row;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: opacity 0.15s;
}
.footer-nav a:hover,.footer-nav a:focus {
  opacity: 1;
  color: #F4A824;
}
.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
}
.brand-contact strong {
  letter-spacing: 2px;
  font-size: 1.15em;
  color: #F4A824;
}
.brand-contact img {
  width: 1.07em;
  margin-right: 6px;
  vertical-align: middle;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 12000;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: #20314A;
  box-shadow: 0 -3px 16px 0 rgba(32,49,74,0.10);
  padding: 27px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1.02em;
  animation: banner-in 0.7s;
}
@keyframes banner-in {
  0% {transform: translateY(100%);opacity:0;}
  100% {transform: translateY(0);opacity:1;}
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 26px;
  cursor: pointer;
  margin-right: 9px;
  margin-bottom: 0;
  margin-top: 8px;
  min-width: 110px;
  box-shadow: 0 2px 12px 0 rgba(244,168,36,0.05);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.11s;
}
.cookie-banner .accept {
  background: #F4A824;
  color: #20314A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #20314A;
  color: #fff;
}
.cookie-banner .reject {
  background: #20314A;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F4A824;
  color: #20314A;
}
.cookie-banner .settings {
  background: #F9F9F7;
  color: #20314A;
  border: 1.5px solid #F4A824;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fffbe8;
  color: #F4A824;
  box-shadow: 0 1.5px 10px 0 rgba(244,168,36,0.09);
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 12100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,49,74,0.32);
}
.cookie-modal {
  position: fixed;
  z-index: 12200;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 320px; max-width: 96vw;
  background: #fffbe8;
  color: #20314A;
  border-radius: 25px;
  box-shadow: 0 7px 44px 0 rgba(32,49,74,0.16);
  padding: 36px 28px 22px 28px;
  animation: modal-in 0.32s cubic-bezier(.64,.16,.41,1.12);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modal-in {
  0% {transform: translate(-50%,40%) scale(0.92);opacity:0;}
  100% {transform: translate(-50%,-50%) scale(1);opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: #F4A824;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F4A824;
  width: 18px; height: 18px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .essentials {
  color: #20314A;
  background: #F9F9F7;
  border-radius: 17px;
  padding: 9px 12px 8px 12px;
  font-weight: 600;
  opacity: 0.82;
  border-left: 4px solid #F4A824;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .accept, .cookie-modal .reject {
  font-size: 1em;
  border-radius: 22px;
  padding: 8px 26px;
}

/* --- PLAYFUL DYNAMIC ANIMATIONS --- */
.cta-primary,
.button,
.card,
.section,
.testimonial-card {
  transition: box-shadow 0.20s, transform 0.16s, background 0.17s;
}
.card:hover, .testimonial-card:hover {
  transform: scale(1.025) rotate(-1.5deg);
  box-shadow: 0 10px 36px 0 rgba(244,168,36,.17);
  background: #faf4e9;
}
.section {
  animation: floatSection 0.65s cubic-bezier(.68,.01,.21,1.01);
  position: relative;
}
@keyframes floatSection {
  0%{opacity:0;transform: translateY(22px) scale(0.98);}
  80%{opacity:1;transform:translateY(-7px) scale(1.015);}
  100%{opacity:1;transform:translateY(0) scale(1);}
}

/* --- FUN / PLAYFUL ELEMENTS --- */
h1, h2 {
  background: linear-gradient(90deg, #000000 30%, #c1040b 92%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
h1 span, h2 span {
  background: none!important;
  color: #20314A!important;
  -webkit-text-fill-color: #20314A!important;
}

/* Tagline for playful energy */
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4A824;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

/* --- VISUAL HIERARCHY --- */
h1 { margin-top: 10px; margin-bottom: 22px; }
h2 { margin-top: 6px; margin-bottom: 18px; }
h3, h4 { margin-top: 10px; margin-bottom: 12px; }

.section h2 { color: #20314A; background: none; -webkit-text-fill-color: #20314A; margin-bottom: 18px; }
.section h3 { color: #F4A824; background: none; -webkit-text-fill-color: #F4A824; margin-bottom: 12px; }

/* --- SPACING & GAPS --- */
.section + .section {
  margin-top: 32px;
}
.text-section ul li, .section ul li {
  margin-bottom: 14px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* --- BACKGROUND ICONS (OPTIONAL) --- */
.section::before {
  content: '';
  display: block;
  position: absolute;
  right: -48px;
  top: 38px;
  width: 130px; height: 130px;
  background: url('../assets/shape-squiggle.svg') no-repeat center center/contain;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.section:last-child::before {
  display: none;
}

/* --- RESPONSIVE DESIGN (Mobile First) --- */
@media (max-width: 1080px) {
  .container {max-width: 920px;}
  .footer .container {flex-direction: column;gap:36px;align-items: flex-start;}
}
@media (max-width: 920px) {
  .container {max-width: 98vw;}
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    right: 16px;
  }
  .container {padding: 0 10px;}
  .section {
    margin-bottom: 44px;
    padding: 24px 8px;
  }
  .testimonial-card, .card {
    flex-direction: column;
    gap: 10px;
    padding: 18px 11px;
    max-width: 97vw;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .hero {
    padding-top: 23px;
    padding-bottom: 28px;
    border-radius: 0 0 28px 28px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 1.67rem;
  }
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.13rem;}
  h3 {font-size: 1rem;}
  .text-section {
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-modal {
    min-width: 96vw;
    padding: 14px 6px 7px 6px;
  }
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 12px 4px 4px 4px;
    font-size: 0.98em;
  }
  .section {
    padding: 14px 2px;
    margin-bottom: 24px;
  }
  .brand-contact {font-size: 0.90rem;}
}

/* --- ACCESSIBILITY, STATES, MICRO-INTERACTIONS --- */
:focus {
  outline: 2px dashed #F4A824;
  outline-offset: 0.18em;
}
button:active, a:active {
  transform: scale(0.97); 
}
button[disabled], .cta-primary[disabled] {
  opacity: 0.54;
  pointer-events: none;
}

/* --- FORMS (Contact) --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 2px solid #F4A824;
  border-radius: 13px;
  padding: 9px 11px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #F9F9F7;
  transition: border 0.15s, background 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #20314A;
  background: #fffbe8;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20314A;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

/* --- PROSE LAYOUT FOR POLICY PAGES --- */
.text-section p, .text-section ul, .text-section ol, .text-section h2, .text-section h3 {
  margin-bottom: 14px!important;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 17px;
}
.text-section li {
  background: none;
  padding: 0;
  margin-bottom: 6px;
  border-radius: 0;
}

/* --- UTILITY / ADDITIONAL PLAYFUL DYNAMIC --- */
@media (hover: hover) and (pointer: fine) {
  .cta-primary, .main-nav a, .footer-nav a, .mobile-nav a {
    transition: transform 0.11s, box-shadow 0.14s, color 0.14s, background 0.14s;
  }
  .cta-primary:hover {transform: scale(1.07) rotate(-1deg);}
  .main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
    transform: scale(1.10) rotate(-1deg);
  }
}

/* --- PRINT SMALL LOGOS IN LIST IF INLINE --- */
ul li img, .text-section ul li img {
  margin-right: 7px;
  width: 24px;
}

/* --- Z-INDEX SAFETY FOR MOBILE MENU & BANNERS --- */
.mobile-menu, .cookie-modal, .cookie-modal-backdrop {
  z-index: 12200;
}

/* --- NO GRID, COLUMNS, ABSOLUTE POS (for content) --- */
/* (Completely avoided as required) */
