/* =====================================================
   CSS RESET & BASELINE 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 {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #235C90;
  letter-spacing: -0.5px;
}
::selection {
  background: #F4B942;
  color: #235C90;
}

/* ==========================
   VARIABLES (for fallback)
=============================*/
:root {
  /* Brand */
  --primary: #235C90;
  --secondary: #F4B942;
  --accent: #F8F8F8;
  --gray: #e7eaf1;
  --text: #232933;
  --dark: #1b2940;
  --white: #fff;
  --shadow: 0 2px 12px 0 rgba(35,92,144,0.11), 0 1.5px 6px 0 rgba(36,37,46,.10);
  /* Geometry */
  --radius-s: 8px;
  --radius-m: 20px;
  --radius-l: 36px;
  /* Typography */
  --heading-1: 2.5rem;
  --heading-2: 2rem;
  --heading-3: 1.25rem;
  --body: 1rem;
  --display-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}

/* =====================
    LAYOUT & CONTAINER
======================*/
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =======================
     TYPOGRAPHY SCALE
========================*/
h1 {
  font-size: var(--heading-1);
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -2px;
  font-family: var(--display-font);
  font-weight: 800;
  text-transform: none;
}
h2 {
  font-size: var(--heading-2);
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
  font-family: var(--display-font);
  font-weight: 700;
}
h3 {
  font-size: var(--heading-3);
  margin-bottom: 8px;
  letter-spacing: -1px;
  font-family: var(--display-font);
  font-weight: 700;
}
h4,h5,h6 {
  font-family: var(--display-font);
  font-weight: 700;
}
p, li, ul, ol {
  font-size: var(--body);
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.7;
}
.subheadline {
  font-size: 1.22rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-family: var(--display-font);
  letter-spacing: 0;
  font-weight: 500;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-section, .faq_snippet, .contact_info, .address_details, .map_widget, .opening_hours,
.live_weather_widget, .newsletter_signup, .reminder_tips {
  margin-bottom: 32px;
}

/* =========================
     HEADER & NAVIGATION
==========================*/
header {
  background: var(--accent);
  border-bottom: 2px solid var(--gray);
  box-shadow: 0 1px 10px 0 rgba(35,92,144,0.07);
  width: 100%;
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: var(--display-font);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  transition: background 0.12s, color 0.14s;
  border-radius: var(--radius-s);
  position: relative;
}
header nav a:hover {
  background: var(--secondary);
  color: var(--white);
}
.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-m);
  padding: 12px 26px;
  box-shadow: 0 2px 8px rgba(35,92,144,0.10);
  transition: background 0.17s, box-shadow 0.2s, transform 0.14s;
  border: none;
  outline: none;
  display: inline-block;
  margin-left: 12px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 18px rgba(35,92,144,0.13);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 12px;
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--white);
}

/* ============================
       HERO SECTION
============================= */
.hero {
  background: var(--accent);
  border-bottom: 2px solid var(--gray);
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 50px 0 40px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
  z-index: 1;
}
.hero h1 {
  font-size: 2.2rem;
  font-family: var(--display-font);
  text-shadow: 0 2px 8px rgba(35,92,144,.04);
}
.hero .cta-btn {
  font-size: 1.08rem;
  margin-top: 14px;
}

/* =========================
      FEATURE & SERVICES
===========================*/
.features, .services, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features {
  background: #fff;
}
.features .container, .services .container {
  /* spacing inside */
  gap: 0;
}
/* --- Feature grids/lists --- */
.feature_grid, .activity_list, .indoor_activity_list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature_grid > div, .activity_list > div, .indoor_activity_list > div {
  flex: 1 1 260px;
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 2.5px solid var(--gray);
  min-width: 220px;
  position: relative;
}
.feature_grid img, .activity_list img, .indoor_activity_list img, .feature_list img, .value_list img { 
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
}
.service_list, .value_list, .feature_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
  padding-left: 0;
}
.service_list li, .value_list li, .feature_list li {
  background: var(--accent);
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius-m);
  box-shadow: 0 2px 8px rgba(35,92,144,0.07);
  padding: 16px 18px 16px 20px;
  font-size: 1.08rem;
  font-family: var(--body-font);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature_list li img, .value_list li img {
  flex-shrink: 0;
}
.quicklinks, .category_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.quicklinks a, .category_filters a {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-m);
  box-shadow: 0 2px 8px rgba(35,92,144,.09);
  transition: background .16s, color .14s, transform .15s;
}
.quicklinks a:hover, .category_filters a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.035);
}
.category_filters strong {
  min-width: 100px;
  font-weight: 600;
}
.category_filters ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: 14px;
}

/* =========================
         TESTIMONIALS
=========================== */
.testimonials {
  background: var(--accent);
  border-top: 2px solid var(--gray);
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  border: 2.5px solid var(--gray);
  padding: 26px 22px 14px 26px;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: box-shadow 0.18s, border-color .16s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(35,92,144,0.16);
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.03);
}
.testimonial-text {
  font-size: 1.08rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.7;
}
.testimonial-meta {
  font-size: .96rem;
  color: var(--primary);
  font-weight: 600;
}
.testimonial-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* ===========================
        FOOTER
============================ */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 0 0;
  border-top: 4px solid var(--secondary);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: var(--accent);
}
.footer-brand img {
  height: 42px;
  margin-bottom: 12px;
}
.footer-brand p,
.footer-menu a {
  color: var(--accent);
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 1 160px;
}
.footer-menu a {
  padding: 4px;
  border-radius: var(--radius-s);
  transition: background .14s, color .13s;
  font-family: var(--display-font);
  font-weight: 700;
}
.footer-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  background: var(--accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .13s;
}
.footer-social a:hover {
  background: var(--secondary);
}
.newsletter-signup {
  background: var(--accent);
  color: var(--primary);
  padding: 22px 24px;
  border-radius: var(--radius-l);
  box-shadow: 0 2px 10px rgba(35,92,144,.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  min-width: 220px;
  max-width: 340px;
}
.newsletter-signup h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.newsletter-signup .cta-btn {
  margin-top: 10px;
}

/* ===============================
      GENERAL SECTIONS & CARDS
==================================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-m);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 2.5px solid var(--gray);
  padding: 26px 18px 14px 26px;
  min-width: 210px;
  max-width: 340px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
      LISTS, STEPS, CHECKLISTS
=================================*/
.steps_explanation {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  counter-reset: itemNum;
}
.steps_explanation li {
  position: relative;
  padding-left: 36px;
  font-size: 1.08rem;
  min-height: 36px;
  color: var(--primary);
  font-family: var(--display-font);
}
.steps_explanation li:before {
  counter-increment: itemNum;
  content: counter(itemNum) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-m);
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.printable_checklists, .outdoor_checklist, .cozy_tips, .bastelideen, .last_minute_tips, .event_calendar, .event_description_list, .reminder_tips {
  margin-bottom: 18px;
}
.printable_checklists a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color .11s;
}
.printable_checklists a:hover {
  color: var(--secondary);
}

/* ===========================
    MOBILE BURGER MENU
============================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  z-index: 888;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 2px 32px 0 rgba(35,92,144,0.14);
  letter-spacing: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav {
  margin-top: 78px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 32px 16px 32px;
}
.mobile-nav a {
  font-family: var(--display-font);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 0;
  border-bottom: 1px solid #e2e6ef;
  width: 100%;
  transition: background 0.11s, color 0.12s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* Hide nav and show burger on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 512px) {
  .mobile-nav {
    padding: 22px 14px 10px 16px;
  }
}

/* ================================
   COOKIE CONSENT BANNER + MODAL
===================================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  padding: 18px 20px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 -2px 18px 0 rgba(35,92,144,0.13);
  font-family: var(--body-font);
  font-size: 1rem;
  gap: 20px;
  animation: cookieSlideUp .45s cubic-bezier(.25, .77, .27, 1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; } 
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: var(--radius-m);
  padding: 9px 20px;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0;
  transition: background .13s, color .16s, transform 0.12s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings {
  background: none;
  color: var(--secondary);
  padding: 9px 15px;
  text-decoration: underline;
  border-radius: var(--radius-s);
  border: none;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(35,92,144,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinCookie .30s;
}
@keyframes fadeinCookie {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-l);
  box-shadow: 0 4px 32px 0 rgba(35,92,144,.17);
  padding: 34px 32px 24px 32px;
  width: 95vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10001;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  background: var(--accent);
  border-radius: var(--radius-m);
  padding: 13px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.cookie-category .always-on {
  font-size: .98rem;
  font-weight: 600;
  color: var(--secondary);
  margin-left: 4px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: var(--radius-m);
  padding: 9px 20px;
  font-family: var(--display-font);
  font-weight: 700;
  border: none;
}
.cookie-modal-actions .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal-actions .reject {
  background: var(--white);
  border: 1.5px solid var(--secondary);
  color: var(--primary);
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .reject:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================
         FORMATTING OTHERS
===============================*/
.address_details, .map_widget, .opening_hours {
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: 0 2px 8px rgba(35,92,144,0.06);
  padding: 18px 22px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: var(--primary);
}
.faq_snippet ul li,
.last_minute_tips ul li,
.reminder_tips ul li {
  margin-bottom: 10px;
}
.live_weather_widget {
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: 0 2px 8px rgba(35,92,144,0.09);
  padding: 16px 22px;
  margin-bottom: 14px;
  font-size: 1.03rem;
  color: var(--primary);
}

/* ============================
        ACCESSIBILITY & STATES
============================= */
a:focus, button:focus {
  outline: 2.4px dashed var(--secondary);
  outline-offset: 3px;
}

/* =========================
           MEDIA QUERIES
==========================*/
@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
  }
  .footer-brand, .newsletter-signup {
    max-width: 260px;
  }
}
@media (max-width: 900px) {
  .feature_grid, .testimonial-cards, .activity_list, .indoor_activity_list {
    flex-direction: column;
    gap: 24px;
  }
  .footer-social {
    justify-content: flex-start;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px){
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .hero {
    padding: 34px 0 28px 0;
    min-height: unset;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section, .features, .services, .testimonials {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .feature_grid > div, .activity_list > div, .indoor_activity_list > div, .card, .testimonial-card {
    padding: 18px 10px 10px 14px;
    min-width: 0;
    max-width: unset;
  }
  .feature_grid, .activity_list, .indoor_activity_list, .testimonial-cards {
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .newsletter-signup {
    min-width: unset;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .address_details, .map_widget, .opening_hours, .live_weather_widget {
    padding: 12px 8px;
    font-size: 0.99rem;
  }
  .mobile-menu {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 512px) {
  .feature_grid > div, .activity_list > div, .indoor_activity_list > div, .card, .testimonial-card {
    padding: 12px 6px 7px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 6px 10px 8px;
  }
  .cookie-modal-content {
    padding: 14px 4vw 14px 7vw;
    width: 99vw;
    max-width: 99vw;
  }
}

/* ================
   PRINTING
=================*/
@media print {
  * { box-shadow: none !important; background: #fff !important; color: #222 !important; }
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/* =====================================================
           SHAPE DECOR & ANGULAR DETAILS
=======================================================*/
/* Geometric style accents - subtle angular lines using clip-path */
.features, .hero, .services, .testimonials {
  position: relative;
  overflow: hidden;
}
.features:before, .hero:before, .services:before, .testimonials:before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -18px;
  width: 180px;
  height: 70px;
  z-index: 0;
  background: var(--secondary);
  opacity: 0.13;
  clip-path: polygon(0% 100%,100% 55%,90% 0,0 38%);
}
.features:before { left: unset; right: -80px; bottom: -4px; width: 155px; height: 64px; opacity: 0.17; }
.hero:before { left: -40px; bottom: -18px; }
.services:before { left: -65px; bottom: -5px; }
.testimonials:before { right: -52px; bottom: -9px; }

/* Angled bottom edge for hero on desktop */
@media (min-width: 900px) {
  .hero {
    clip-path: polygon(0 0,100% 0,100% 90%,0 100%);
  }
}
/* End CSS */
