/* =====================
   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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F6F2;
  color: #212124;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #185C8A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #32A852;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
  font-size: 1em;
}

/* =====================
   Base Typography
   ===================== */
h1, h2, h3, h4, h5, h6 {
  color: #185C8A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  line-height: 1.15;
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #185C8A;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #245283;
}
p, li {
  font-size: 1.03rem;
  color: #293043;
}
p {
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.18rem;
  color: #345d3c;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =====================
   Layout Containers
   ===================== */
.container {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 22px 0 rgba(138, 163, 176, 0.08), 0 1.5px 4px rgba(138,163,176,0.04);
}

/* =====================
   Header & Navigation
   ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(138, 163, 176, 0.07);
  padding: 0 0 0 0;
  z-index: 1001;
  position: sticky;
  top: 0;
}
header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
header > a:first-child img {
  height: 48px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35, 80, 131, 0.09);
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #185C8A;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 1rem;
  transition: background 0.21s, color .18s;
}
header nav a:hover,
header nav a:focus {
  background: #FFF6E2;
  color: #32A852;
}
.cta-primary {
  background: #185C8A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 22px;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(27, 92, 138, 0.15);
  transition: background 0.21s, color 0.18s, box-shadow 0.16s;
  margin-left: 18px;
  margin-right: 8px;
  outline: none;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.cta-primary:focus,
.cta-primary:hover {
  background: #32A852;
  color: #fff;
  box-shadow: 0 6px 28px rgba(50, 168, 82, 0.12);
}

/* =====================
   Mobile Navigation
   ===================== */
.mobile-menu-toggle {
  background: #FFF0E4;
  color: #185C8A;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.19s;
  border: 1px solid #e2e2e2;
  margin-left: auto;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFE9CB;
  color: #32A852;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 60px 0 rgba(27, 92, 138, .09);
  z-index: 1500;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.6,.31,.27,1.12);
  display: flex;
  flex-direction: column;
  padding: 30px 28px 20px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(.5,1.2,.2,1);
}
.mobile-menu-close {
  background: #fff8f1;
  color: #185C8A;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFE9CB;
  color: #32A852;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 1rem;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  color: #185C8A;
  border-bottom: 1px solid #f4e7d1;
  border-radius: 0;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #32A852;
  background: #FFF6E2;
}

/* Show burger button on mobile / hide nav */
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   Section & Flex Patterns
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFAF3;
  border-radius: 20px;
  padding: 30px 22px 22px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  box-shadow: 0 2.5px 15px 0 rgba(255,200,150,0.07);
  border: 1px solid #FFE9CB;
  transition: box-shadow 0.21s, border-color 0.14s;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 10px 36px 0 rgba(255, 198, 124,0.13);
  border-color: #FFD59F;
}
.feature-item img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFF4DE;
  box-shadow: 0 1.5px 6px 0 rgba(255, 198, 124,0.08);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2.5px 12px 0 rgba(27, 92, 138, 0.085), 0 1px 3px 0 rgba(39,76,90, .02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF5EA;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(27,92,138,0.07);
  margin-bottom: 20px;
  max-width: 460px;
  width: 100%;
  transition: box-shadow 0.21s, transform 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(50, 168, 82, 0.11);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: #293043;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: center;
  line-height: 1.45;
  margin: 0 0 0 0;
}
.testimonial-author {
  color: #185C8A;
  font-size: 1rem;
  font-weight: 600;
  margin-top: -7px;
}

/* CTAs & Buttons */
.button, .cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #185C8A;
  color: #fff;
  border-radius: 22px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow .17s;
  box-shadow: 0 2px 12px rgba(27, 92, 138, 0.09);
  outline: none;
  border: none;
}
.button:hover, .button:focus,
.cta-primary:hover, .cta-primary:focus {
  background: #32A852;
  color: #fff;
  box-shadow: 0 6px 28px rgba(50, 168, 82, 0.10);
}

/* List styling */
ul.contact-details {
  margin-bottom: 12px;
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
ul.contact-details li {
  color: #393939;
  font-size: 1.02rem;
}

/* Section spacing and alignment (per prompt) */
.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;
}

/* =====================
   Footer
   ===================== */
footer {
  background: #FFF9EF;
  border-top: 1.5px solid #FFE9CB;
  color: #393A36;
  padding: 0 0 0 0;
  margin-top: 50px;
}
footer .container {
  padding: 36px 20px 24px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: #185C8A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-right: 6px;
  font-size: .99rem;
  border-radius: 14px;
  padding: 5px 12px;
  transition: background .15s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFF6E2;
  color: #32A852;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #FFF4DE;
}
.legal-info p {
  color: #76727a;
  font-size: 0.98rem;
  margin-top: 14px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .footer-nav, .footer-social, .legal-info {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  footer .content-wrapper {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:640px) {
  .footer-nav {
    gap: 8px;
  }
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 1050px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 13px;
    border-radius: 14px;
  }
  .card {
    border-radius: 14px;
  }
  .footer-social img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }
}

/* Reduce padding for smaller screens */
@media (max-width: 550px) {
  h1 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: .96rem;
    margin-bottom: 10px;
  }
  .cta-primary, .button {
    padding: 8.5px 16px;
    font-size: .98rem;
  }
  .feature-item {
    padding: 18px 10px 12px 10px;
    min-width: unset;
    border-radius: 13px;
  }
  .section {
    padding: 11px 2.5vw;
    margin-bottom: 20px;
    border-radius: 8px;
  }
}

/* ================================
   Cookie Consent Banner & Modal
   ================================ */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF6E2;
  border-top: 2px solid #FFD59F;
  box-shadow: 0 -4px 22px 0 rgba(138, 163, 176, 0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2100;
  transition: transform 0.35s cubic-bezier(.65,.16,.28,1.25), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-banner .cookie-message {
  font-size: 1.07rem;
  color: #1e272e;
  margin-bottom: 8px;
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  border-radius: 20px;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1.5px 6px 0 rgba(27, 92, 138, 0.08);
  transition: background 0.20s, color 0.17s, box-shadow .12s;
}
.cookie-btn.accept {
  background: #32A852;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #185C8A;
  color: #fff;
}
.cookie-btn.reject {
  background: #FFE9CB;
  color: #185C8A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD59F;
  color: #185C8A;
}
.cookie-btn.settings {
  background: #fff;
  color: #185C8A;
  border: 1.5px solid #FFD59F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFF6E2;
  color: #32A852;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 400px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 14px 84px 0 rgba(27, 92, 138, 0.11);
  padding: 32px 24px 18px 24px;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 1;
  transition: opacity 0.27s, transform 0.35s cubic-bezier(.65,.16,.28,1.04);
  z-index: 2500;
}
#cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, -35%) scale(.93);
  pointer-events: none;
}
#cookie-modal h2 {
  color: #185C8A;
  font-size: 1.22rem;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F7EEDB;
  font-size: 1.04rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-category .cookie-desc {
  color: #757776;
  font-size: 0.98rem;
}
.cookie-toggle input[type=checkbox] {
  width: 38px;
  height: 21px;
  appearance: none;
  background: #FFE9CB;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .19s;
}
.cookie-toggle input[type=checkbox]:checked {
  background: #32A852;
}
.cookie-toggle input[type=checkbox]:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform .19s cubic-bezier(.8,.41,.4,1.05);
  box-shadow: 0 1.5px 7px 0 rgba(0,0,0,0.04);
}
.cookie-toggle input[type=checkbox]:checked:before {
  transform: translateX(15px);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}
#cookie-modal .cookie-btn {
  width: auto;
}
#cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #FFF6E2;
  color: #185C8A;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  border: none;
  transition: background 0.18s, color 0.13s;
}
#cookie-modal-close:hover, #cookie-modal-close:focus {
  background: #FFE9CB;
  color: #32A852;
}

@media (max-width: 600px) {
  #cookie-banner {
    padding: 12px 8px;
    font-size: 0.98rem;
  }
  #cookie-modal {
    max-width: 98vw;
    padding: 18px 7vw 8px 7vw;
    border-radius: 12px;
  }
}

/* =====================
   Utility & Micro-interactions
   ===================== */
::-webkit-scrollbar {
  width: 11px;
  background: #FFFAF3;
}
::-webkit-scrollbar-thumb {
  background: #FFE9CB;
  border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD59F;
}

.fade-in {
  animation: fadeIn .8s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation-duration: 0s !important;
  }
}

/* =====================
   End CSS
   ===================== */
