/* =====================================================
   CSS RESET & NORMALIZE for soft pastel style
   ===================================================== */
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;
}
body {
  line-height: 1.6;
  background: #F9FBFA;
  -webkit-font-smoothing: antialiased;
  color: #224759;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #224759;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
}
button { cursor: pointer; }
:focus { outline: 2px solid #F9B73733; outline-offset: 2px; }

/* =========================
  BRAND FONTS & COLORS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

:root {
  --color-primary: #224759;
  --color-secondary: #FFFFFF;
  --color-accent: #F9B737;
  /* Soft Pastel Palette */
  --pastel-blue: #C0DBEA;
  --pastel-green: #CDE7D9;
  --pastel-pink: #FADCE3;
  --pastel-yellow: #FBF6CE;
  --pastel-lavender: #EFEAF2;
  --pastel-sky: #EAF3FA;
  --pastel-mint: #E4F5F1;
  --pastel-beige: #F9F3E4;
  --shadow: 0 4px 24px 0 rgba(34, 71, 89, 0.07), 0 1.5px 6px 0 rgba(34, 71, 89, 0.08);
  --transition: 0.25s cubic-bezier(.7,.3,.3,1.4);
  --radius: 18px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--pastel-sky);
  color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
}

p, ul, ol {
  font-size: 1.05rem;
  color: #34526c;
  margin-bottom: 1.25em;
}
strong, b {
  font-weight: 700;
}

/* ==================
     CONTAINER LAYOUT
=================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ================
 HEADER/NAVIGATION
================= */
header {
  background: linear-gradient(90deg,var(--pastel-blue),var(--pastel-beige));
  box-shadow: 0 2px 16px 0 rgba(34,71,89,0.08);
  position: relative;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-pink);
  color: var(--color-accent);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(255,188,71,0.06);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  margin-left: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffdb82;
  color: #224759;
  box-shadow: 0 4px 20px 0 rgba(249,183,55,0.16);
}

/* ===============
 MOBILE NAVIGATION
================ */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1080px) {
  .header-flex nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--color-accent);
    color: var(--color-primary);
    width: 46px; height: 46px;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
    z-index: 110;
    box-shadow: 0 2px 8px 0 rgba(249,183,55,0.12);
    transition: background 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #ffdb82;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 20px 20px 32px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 95vw;
    max-width: 350px;
    background: linear-gradient(120deg, var(--pastel-pink) 0%, var(--pastel-mint) 100%);
    box-shadow: var(--shadow);
    transform: translateX(-105%);
    transition: transform 0.35s cubic-bezier(.7,.3,.3,1.4);
    z-index: 9999;
  }
  .mobile-menu.active {
    transform: translateX(0);
  }
  .mobile-menu-close {
    font-size: 2rem;
    background: none;
    border: none;
    color: #224759;
    align-self: flex-end;
    margin-bottom: 20px;
    margin-right: 8px;
    cursor: pointer;
    transition: color .18s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: var(--color-accent);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .mobile-nav a {
    color: #26425c;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.14rem;
    padding: 12px 8px;
    border-radius: 10px;
    transition: background var(--transition), color var(--transition);
    font-weight: 600;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--pastel-yellow);
    color: var(--color-accent);
  }
  .mobile-menu {
    /* Fallback for older browsers */
    overflow-y: auto;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* Hide menu toggle on desktop, show on mobile */
@media (max-width: 1080px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================
        HERO SECTION
========================= */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 75%, var(--pastel-yellow) 100%);
  padding: 60px 0 40px 0;
  box-shadow: 0 4px 32px 0 rgba(34,71,89,0.06);
  border-radius: 0 0 36px 36px;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero h1 {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 4px 12px #eaf3fa;
}
.hero p {
  color: #435c74;
  font-size: 1.17rem;
}

/* ================
  SECTION SPACING
==================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .section, .content-wrapper {
    padding: 24px 0;
  }
}

/* ====================
    FLEXBOX CONTAINERS
====================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features-grid > div {
  background: linear-gradient(120deg, var(--pastel-beige) 80%, var(--pastel-mint) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 340px;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  gap: 10px;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 6px 32px 0 rgba(34,71,89,0.12);
  transform: translateY(-4px) scale(1.02);
}
.features-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 3px #fce9f0);
}
.features-grid h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #2e5267;
  margin-bottom: 5px;
}
.features-grid p {
  margin: 0;
  color: #3b566e;
  font-size: 0.99rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 #b6d7e4;
  transform: translateY(-4px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .features-grid,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =========================
      TESTIMONIAL CARDS
========================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(100deg, var(--pastel-lavender), var(--pastel-pink) 90%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-style: italic;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  min-width: 200px;
}
.testimonial-card blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #234362;
  background: none;
  font-size: 1.04rem;
  flex: 1;
}
.testimonial-details {
  font-size: 0.99rem;
  font-style: normal;
  color: #3b566e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #e4bcb6;
  transform: translateY(-2px) scale(1.015);
}

/* Ensure testimonial contrast on all backgrounds */
.testimonial-card, .testimonial-card blockquote, .testimonial-details {
  color: #234362;
}

/* =========================
        TAGS & LABELS
=========================== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 18px 0 0 0;
}
.tags span, .tag {
  background: var(--pastel-lavender);
  color: #595073;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 14px 4px 11px;
  font-size: 0.99rem;
  box-shadow: 0 1px 3px 0 #eee6fc;
  margin-top: 4px;
  user-select: none;
}

/* =========================
        LIST STYLES
========================== */
.bullet-list {
  list-style: disc;
  margin-left: 1.7em;
}
.bullet-list li {
  margin-bottom: 0.75em;
  color: #354968;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
}

/* =========================
      CONTACT INFORMATION
========================== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pastel-mint);
  border-radius: 12px;
  padding: 13px 19px;
  box-shadow: 0 2px 12px 0 #e3f0e5;
  color: #224759;
  font-weight: 600;
  font-size: 1.03rem;
}
.contact-info img {
  width: 26px;
  height: 26px;
}
.contact-info a {
  color: #38657d;
  text-decoration: underline;
  font-size: 1.01rem;
  transition: color 0.17s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--color-accent);
}
.opening-hours, .contact-map, .contact-address-details {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  font-size: 1.03rem;
}
.contact-address-details span {
  display: flex; align-items: center; gap: 9px;
  background: var(--pastel-beige);
  border-radius: 6px;
  padding: 6px 13px;
  box-shadow: 0 1.5px 7px 0 #f6ead0;
  margin-right: 7px;
}

/* ====================
     FOOTER STYLES
===================== */
footer {
  background: linear-gradient(92deg,var(--pastel-mint) 70%, var(--pastel-blue) 100%);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 18px 0 #e8e7fc;
  margin-top: 44px;
  padding: 35px 0 0 0;
}
footer .container {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #476c8e;
  font-size: 1.03rem;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
footer nav a:hover {
  background: var(--pastel-yellow);
  color: var(--color-accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #5e768e;
}
.footer-brand img {
  height: 32px;
  width: auto;
}

@media (max-width: 650px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px 0;
  }
}

/* ===================================
     COOKIE CONSENT BANNER & MODAL
===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--pastel-pink) 93%, var(--pastel-yellow) 100%);
  color: #24344c;
  box-shadow: 0 -2px 18px 0 #e8e7fc;
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  font-size: 1.08rem;
  gap: 20px;
  flex-wrap: wrap;
  border-radius: 26px 26px 0 0;
  animation: cookie-fade-in 0.71s 0.19s both;
}
@keyframes cookie-fade-in { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
.cookie-banner p {
  margin: 0;
  flex: 2;
  color: #24344c;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-accent);
  color: #224759;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 10px 0 #eedfb0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffe19f;
  color: #234b7a;
}
.cookie-banner .cookie-settings {
  background: var(--pastel-beige);
  color: #576779;
  border: 1px solid #fbeccb;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 13010;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  min-width: 320px;
  max-width: 430px;
  background: linear-gradient(115deg, var(--pastel-yellow) 80%, var(--pastel-mint) 100%);
  padding: 30px 30px 26px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 40px 0 #ecebdf;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .4s cubic-bezier(.6,.4,.3,1);
}
.cookie-modal.active {
  opacity: 1; pointer-events:auto; transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  color: #384354;
  font-size: 1.07rem;
}
.cookie-modal input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: #F9B737;
}
.cookie-modal .cookie-category-desc {
  color: #6a7589;
  font-size: 0.97rem;
  margin-left: 29px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.5rem;
  background: none;
  color: #224759;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--color-accent);
}
@media (max-width: 650px) {
  .cookie-modal { padding: 16px 9px 14px 12px; }
}

/* Cookie overlay */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45,66,95,0.11);
  z-index: 13005;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cookie-modal.active ~ .cookie-modal-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ===================
     BUTTON STYLES
=================== */
button, .btn {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* =====================
  GENERAL COMPONENTS
====================== */
.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;
}

/* ==========
  ANIMATIONS
============ */
.cta-btn, .card, .features-grid > div, .testimonial-card {
  transition: box-shadow .15s, transform .15s, background .18s, color .15s;
}
.cta-btn:active, .card:active, .features-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* =========
  LINKS
========== */
a { transition: color var(--transition), text-decoration 0.18s; }
a:hover, a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ==========
  RESPONSIVE
============ */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width:850px) {
  .features-grid > div {
    min-width: 90vw;
    max-width: 100%;
  }
  .card {
    min-width: 100%;
  }
}
@media (max-width:650px) {
  .hero { padding: 28px 0 20px 0; border-radius: 0 0 20px 20px; }
  .section {
    padding: 18px 8px;
  }
  .content-wrapper {
    padding: 10px 0;
    gap: 14px;
  }
  .features-grid {
    gap: 15px;
  }
}

/* ===========
  UTILITIES
============ */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center; }

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