/* CSS RESET & NORMALIZATION */
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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; background: #F9FAF7; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ul, ol { list-style: none; padding-left: 0; }
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button:focus, a:focus { outline: 2px solid #FFD166; outline-offset: 2px; }

/* BRAND VARIABLES & FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue:400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --primary: #1D3557;
  --secondary: #FFD166;
  --accent: #F9FAF7;
  --neutral: #ffffff;
  --warning: #FFC19E;
  --shadow: 0 4px 24px 0 rgba(208, 142, 45, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font-display: 'Bebas Neue', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --text-dark: #1D3557;
  --text-light: #fff;
  --text-soft: #544D3D;
  --focus-outline: #FFD166;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--accent);
  line-height: 1.6;
}

/* LAYOUT CONTAINERS & FLEXBOX PATTERNS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--neutral);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  min-width: 240px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 3px 24px 0 rgba(29,53,87,0.10);
  color: var(--text-dark);
  flex: 1 1 320px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(29,53,87,0.15);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--neutral);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 230px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-item img {
  width: 44px; height: 44px; margin-bottom: 4px;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(29,53,87,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
}
p, address, ul, li, span {
  font-size: 1rem;
  color: #544D3D;
}
address {
  font-style: normal;
  color: #544D3D;
  line-height: 1.5;
}
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* CTA & BUTTONS */
.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px 0 rgba(255,209,102,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFE9A7;
  box-shadow: 0 4px 32px 0 rgba(255,209,102,0.18);
  transform: translateY(-2px) scale(1.02);
  color: var(--primary);
}
.cta {
  margin-top: 8px;
}

button, .mobile-menu-toggle, .mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.7rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #FFE9A7;
  color: var(--primary);
}

/* MAIN HEADER */
header {
  width: 100%;
  min-height: 68px;
  padding: 16px 0;
  background: var(--neutral);
  box-shadow: 0 1px 12px 0 rgba(255,209,102,0.09);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
header > a > img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-md);
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
header nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header .cta.primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 220;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--neutral);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.55, 0, 0.1, 1);
  box-shadow: 2px 0 36px 0 rgba(29,53,87,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform 0.36s cubic-bezier(0.9, 0, 0.2, 1);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 32px;
  background: none;
  font-size: 2.5rem;
  z-index: 12001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 66px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--primary);
  padding: 14px 0 14px 5px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* FOOTER */
footer {
  margin-top: 40px;
  background: var(--neutral);
  padding: 32px 0 18px 0;
  box-shadow: 0 -1px 20px 0 rgba(29,53,87,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 5px;
}
footer nav a {
  color: var(--primary);
  font-size: 0.97rem;
  font-family: var(--font-body);
  border-radius: 7px;
  padding: 5px 8px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
footer p {
  color: #7d7a7a;
  font-size: 0.97rem;
}

/* SECTIONS & WHITE CARD APPEARANCE */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
}
section .container {
  padding-left: 0; padding-right: 0;
}
section .content-wrapper {
  background: var(--neutral);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  gap: 24px;
  margin-bottom: 0px;
}

/* UL/OL LIST INSIDE CARDS */
section .content-wrapper ul, section .content-wrapper ol {
  margin-left: 0;
  padding-left: 0;
  gap: 10px;
}
section .content-wrapper ul li, section .content-wrapper ol li {
  padding-left: 0.6em;
  position: relative;
}
section .content-wrapper ul li:before {
  content: '\2022';
  display: inline-block;
  color: var(--secondary);
  font-size: 1.2em;
  margin-right: 0.6em;
  vertical-align: middle;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .container {max-width: 96vw;}
  section .content-wrapper {padding: 30px 12px;}
}
@media (max-width: 850px) {
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  header nav { gap: 10px; }
}
@media (max-width: 768px) {
  .container {padding: 0 8px;}
  header nav { display: none; }
  header .cta.primary { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .section, section {padding: 26px 2px;}
  .testimonial-card, .card, .feature-item, section .content-wrapper {padding: 21px 9px;}
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  .feature-grid, .content-grid, .card-container {flex-direction: column;gap:20px;}
  .text-image-section {flex-direction: column; align-items: flex-start;gap:18px;}
  .mobile-menu {padding: 30px 10px;}
  .mobile-menu-close {right: 17px;}
}
@media (max-width: 530px) {
  .content-wrapper, section .content-wrapper {padding: 11px 1px;}
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-item, .testimonial-card, .cta.primary {
  transition: box-shadow 0.18s, transform 0.13s, background 0.14s, color 0.14s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 7px 28px 0 rgba(29,53,87,0.15);
  transform: translateY(-2px) scale(1.01);
}
a, button {
  transition: background 0.16s, color 0.16s, transform 0.12s;
}
a:active, button:active {transform: scale(0.97);}

/* FORM, INPUTS (if present) */
input[type=text], input[type=email], textarea {
  background: #fff;
  border: 1.5px solid #EDC887;
  padding: 11px 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  color: var(--primary);
  width: 100%;
  transition: border 0.18s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border: 1.5px solid var(--secondary);
}

/* COOKIE CONSENT BANNER - FIXED BOTTOM */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--neutral);
  box-shadow: 0 -2px 28px 0 rgba(29,53,87,0.11);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 15001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 18px 30px;
  gap: 14px;
  min-width: 0;
  max-width: 600px;
  margin: 0 auto;
  right: 0; left: 0;
  transition: box-shadow 0.18s, transform 0.29s;
}
.cookie-banner.hide { display: none; }
.cookie-banner-message {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-consent-btn, .cookie-settings-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  font-size: 1rem;
  padding: 7px 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFE9A7;
  color: var(--primary);
}
.cookie-reject-btn {
  background: #EDC887;
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 7px 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #FFD166;
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(29,53,87,0.15);
  z-index: 16000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.cookie-modal {
  background: var(--neutral);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px 0 rgba(29,53,87,0.18);
  min-width: 320px;
  max-width: 95vw;
  padding: 40px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #FFE9A7;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  display: inline-block;
}
.toggle-switch input[type=checkbox] {display:none;}
.toggle-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #EDC887;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.14s;
}
.toggle-switch input[type=checkbox]:checked + .toggle-slider {
  background: var(--secondary);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.19s;
}
.toggle-switch input[type=checkbox]:checked + .toggle-slider:before {
  transform: translateX(18px);
  background: var(--primary);
}

/* MISC WARM_FRIENDLY STYLE TWEAKS */
.card, .content-wrapper, .feature-item, .testimonial-card {
  border-radius: var(--radius-lg);
  background: var(--neutral);
}
.card, .feature-item, .testimonial-card {
  box-shadow: 0 3px 24px 0 rgba(208,142,45,0.08);
}
.text-section a {
  color: var(--primary);
  background: #FFE9A7;
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-weight: 400;
  font-size: 1rem;
  transition: background 0.13s, color 0.17s;
}
.text-section a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* SPACING STRICTNESS - to prevent overlapping */
section, .section {
  margin-bottom: 60px;
}
.feature-item, .testimonial-card, .card {
  margin-bottom: 20px;
}
.card-container,.feature-grid,.content-grid {
  gap: 24px;
}

/* SEPARATE ADDRESS STYLE */
address > a {
  color: var(--primary);
  text-decoration: underline dotted;
  transition: color 0.13s;
}
address > a:hover { color: #ffba00; }

/* HIP MICRO-INTERACTIONS */
.cta.primary svg {
  margin-left: 10px;
  transition: transform 0.18s;
}
.cta.primary:hover svg {transform: translateX(5px);}

/* ACCESSIBLE HIDDEN CLASS (for cookie modal) */
.sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

/* END OF CSS */
