/* =============================================
   CSS RESET & BASE NORMALIZE (mobile-first)
   ============================================= */
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, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, ul, ol, menu, nav, section, main, header, footer, aside, article, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #F8FBFD;
  color: #3D4853;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* =============================================
   VARIABLES (fallbacks included if needed)
   ============================================= */
:root {
  --primary: #004974;
  --secondary: #35B4A0;
  --accent: #F2F6FA;
  --pastel-blue: #B7DFF7;
  --pastel-green: #B5EAD7;
  --pastel-yellow: #FFFACD;
  --pastel-purple: #E7C5F9;
  --pastel-pink: #FFD6E0;
  --white: #FFFFFF;
  --black: #2D3640;
  --shadow: 0 4px 24px 0 rgba(108,133,167,0.10);
  --radius: 18px;
  --radius-lg: 32px;
  --container-width: 1240px;
  --transition: 0.26s cubic-bezier(0.42, 0, 0.58, 1);
}

/* =============================================
   FONT FACE (Google Fonts)
   ============================================= */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: var(--accent, #F2F6FA);
}
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
p, li, label {
  font-size: 1rem;
  color: #3D4853;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  color: var(--secondary);
  font-weight: 700;
}
.subheadline {
  color: var(--primary);
  font-size: 1.13rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* Dreamy, soft pastel background blend */
.hero-section {
  background: linear-gradient(135deg, var(--pastel-blue) 70%, var(--accent) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 20px 36px 20px;
  margin-bottom: 36px;
  align-items: center;
  text-align: center;
}

/* ===================
   LAYOUT CONTAINER
   =================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 0;
}

/* ===================
   HEADER & MAIN NAV
   =================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 14px 0 rgba(140,176,232,0.07);
  position: sticky;
  top: 0;
  z-index: 25;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  gap: 16px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 25px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 13px;
  border-radius: 9px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.cta-button {
  background: linear-gradient(85deg, var(--secondary), #73d9c2 90%);
  color: var(--primary);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 24px;
  box-shadow: 0 2px 9px rgba(53,180,160,0.08);
  margin-left: 12px;
  border: none;
  outline: none;
  transition: transform var(--transition), box-shadow var(--transition), background 0.18s;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #90EED6, var(--secondary) 80%);
  transform: translateY(-2px) scale(1.04);
  color: var(--primary);
  box-shadow: 0 8px 24px -4px #a8dbcf22;
}

/* ============
   BURGER MENU
   ============ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 12px;
  margin-left: 8px;
  transition: background 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-blue);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: rgba(0,0,0,0.08) 0 8px 64px;
  z-index: 140;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.55,0.14,0.27,1.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  padding: 15px 30px 15px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: left;
  padding-left: 32px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: var(--primary);
  padding: 18px 6px 18px 0;
  border: none;
  border-bottom: 1px solid #e4eef8;
  font-family: 'Open Sans';
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
@media (max-width: 991px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav, .cta-button {
    display: flex;
  }
}

/* ====================
   SECTION SPACING
   ==================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.content-wrapper.cta-section, .confirmation-section {
  background: var(--pastel-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 20px;
  text-align: center;
  align-items: center;
  margin-bottom: 0;
  gap: 12px;
}
/* For card containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px #9cc7ef38;
  transform: translateY(-4px) scale(1.015);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding: 0 8px;
  }
  section {
    padding: 32px 7px;
    margin-bottom: 38px;
  }
  .content-wrapper.cta-section, .confirmation-section {
    padding: 24px 5px;
  }
}

/* ============================
   OFFERINGS: FEATURES & GRID
   ============================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 0;
  transition: box-shadow var(--transition), background 0.18s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  align-self: center;
}
.feature:hover {
  background: var(--pastel-blue);
  box-shadow: 0 8px 26px #b7dff759;
}
@media (max-width: 991px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .feature {
    max-width: 100%;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   SERVICE-LIST
   =============== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 28px;
}
.service-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow var(--transition), background 0.18s;
}
.service-item h3 { color: var(--primary); font-size: 1.14rem; }
.service-item a.cta-button {
  margin-top: 12px;
  margin-left: 0;
}
.service-item:hover {
  background: var(--pastel-pink);
  box-shadow: 0 8px 26px #ffd6e030;
}
@media (min-width: 700px) {
  .service-list {
    flex-direction: row;
    gap: 24px;
  }
  .service-item {
    min-width: 260px;
    max-width: 350px;
    flex: 1 1 240px;
  }
}
@media (max-width: 700px) {
  .service-item { max-width: 100%; }
}

/* ================
   EVENT-LIST
   ================ */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.event-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), background 0.18s;
}
.event-item:hover { background: var(--pastel-green); box-shadow: 0 8px 22px #b5ead759; }

@media (min-width: 700px) {
  .event-list {
    flex-direction: row;
    gap: 24px;
  }
  .event-item {
    min-width: 230px; max-width: 350px; flex: 1 1 215px;
  }
}

/* ==========================
   TESTIMONIALS/STIMMEN
   ========================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pastel-purple);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px #e7c5f940;
  padding: 20px;
  margin-bottom: 24px;
  color: var(--black);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.07rem;
  color: var(--primary);
  margin-right: 16px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
}
/* Accessibility: ensure contrast for review cards */
.testimonial-card {
  background: #e7c5f9;
  color: #2D3640;
}
.testimonial-card p, .testimonial-author {
  color: #004974;
}

/* ================
   TEXT SECTION
   ================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 2px 5px #b7dff720;
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
}
.text-section ul li:before {
  content: '•';
  color: var(--secondary);
  font-size: 1.1em;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.text-section h3 {
  color: var(--primary);
  font-family: 'Roboto Slab';
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 16px;
  font-size: 1.09rem;
}

/* ================
   FOOTER
   ================ */
footer {
  width: 100%;
  background: #F7FAFE;
  border-top: 2px solid #b7dff7;
  padding: 22px 0 8px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--primary);
  font-family: 'Open Sans';
  font-size: 1rem;
  opacity: 0.75;
  transition: color 0.18s;
}
footer nav a:hover,footer nav a:focus{
  color: var(--secondary);
  opacity: 1;
}
.footer-contact {
  color: #45596f;
  font-size: 0.96rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
}

/* ================
   COOKIE CONSENT
   ================ */
.cookie-banner {
  position: fixed;
  left: 0;right: 0;bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--pastel-yellow), var(--pastel-green) 85%);
  border-top: 2px solid #b7dff7;
  color: #2D3640;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  padding: 18px 20px 18px 24px;
  box-shadow: 0 -8px 44px 0 #d4f3ec16;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.cookie-banner .cookie-btn {
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 24px;
  margin: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #b7dff724;
  transition: background 0.16s, color 0.16s, transform .15s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.04);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1800;
  inset: 0;
  background: rgba(58,79,102,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 36px #b7dff7a8, 0 1px 4px #88bbc41a;
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 26px 26px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  animation: cookiePopupIntro .39s cubic-bezier(0.37,0.51,0.26,1.24);
}
@keyframes cookiePopupIntro {
  0% { transform: translateY(60px) scale(0.95); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  margin-bottom: 2px;
  color: var(--primary);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  font-weight: normal;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-cookie-modal:hover { color: var(--secondary); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.cookie-category .essential {
  color: var(--secondary);
  font-weight: 700;
}

/* ============================
   CONFIRM/SUCCESS
   ============================ */
.confirmation-section {
  background: var(--pastel-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 15px;
  text-align: center;
  align-items: center;
}
.confirmation-section a.cta-button {
  margin-top: 20px;
}

/* ================
   ANIMATIONS/MICRO-INTERACTIONS
   ================ */
a, .cta-button, button {
  transition: color .2s, background .21s, box-shadow .16s, transform .16s;
}
.card, .feature, .testimonial-card {
  transition: box-shadow 0.23s, background 0.18s, transform .2s;
}
.cta-button {
  transition: background 0.18s, color 0.17s, box-shadow .14s, transform .17s;
}

/* ================
   RESPONSIVE MEDIA QUERIES
   ================ */
@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .feature, .service-item, .event-item, .testimonial-card, .text-section {
    padding: 14px 8px !important;
  }
  .container {
    padding: 0 3px;
  }
  .hero-section {
    padding: 26px 7px;
  }
  section {
    padding: 18px 1px;
    margin-bottom: 28px;
  }
}

/* ================
   UTILITY
   ================ */
.gap { gap: 24px !important; }
.mg-b-20 { margin-bottom: 20px !important; }
.mg-b-32 { margin-bottom: 32px !important; }
.mg-b-60 { margin-bottom: 60px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.hide { display: none !important; }

/* ENSURE NO overlap between all flexbox children! */
.card, .feature, .service-item, .event-item, .testimonial-card, .text-section {
  margin-bottom: 0;
}
section > .container > .content-wrapper > * + * {
  margin-top: 24px;
}

/* ================
   SCROLLBAR (soft)
   ================ */
::-webkit-scrollbar {
  width: 9px;
  background: #F2F6FA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #d4ecf7;
  border-radius: 8px;
}

/* END OF STYLE.CSS */
