/* --- CSS RESET & BASE TYPOGRAPHY --- */
 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 {
   scroll-behavior: smooth;
   height: 100%;
 }
 body {
   min-height: 100vh;
   font-family: 'Roboto', Arial, sans-serif;
   font-size: 16px;
   line-height: 1.6;
   color: #01324C;
   background: #FFF;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   background-color: #FFF;
 }
 img {
   max-width: 100%;
   display: block;
   border-radius: 12px;
 }
 a {
   color: #01324C;
   text-decoration: none;
   transition: color 0.2s;
 }
 a:focus {
   outline: 2px solid #93C47D;
   outline-offset: 2px;
 }
 ul, ol {
   list-style: none;
 }
 h1, h2, h3, h4, h5, h6 {
   font-family: 'Montserrat', Arial, sans-serif;
   font-weight: 700;
   color: #01324C;
   line-height: 1.15;
 }
 h1 { font-size: 2.6rem; margin-bottom: 20px; }
 h2 { font-size: 2rem; margin-bottom: 16px; }
 h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }
 h4 { font-size: 1.2rem; margin-bottom: 10px; }
 p, li, cite { font-size: 1rem; margin-bottom: 10px; color: #244259; }
 strong { font-weight: 600; }
 cite { font-style: normal; color: #6e6e6e; margin-left: 6px; }

/* --- COLOR VARIABLES --- */
:root {
  --primary: #01324C;
  --primary-light: #26597A;
  --secondary: #93C47D;
  --secondary-dark: #6A8F51;
  --accent: #F3F3F3;
  --background: #FFF9F5;
  --card-bg: #FFFFFF;
  --cta-bg: #FFB86B;
  --cta-bg-hover: #E89C4F;
  --shadow: 0 4px 24px 0 rgba(1, 50, 76, 0.06);
  --shadow-hover: 0 8px 32px 0 rgba(1, 50, 76, 0.13);
  --radius: 18px;
  --testimonial-bg: #FFF7EF;
  --focus-outline: #93C47D;
  --danger: #E45F5C;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section, .hero-section, .features-section, .about-section, .testimonials-section, .cta-section,
.services-section, .usp-section, .article-overview-section, .subscription-section, .team-section, .values-section, .legal-section, .thank-you-section, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  position: relative;
}
/* Card-style rhythm */
.card-container, .feature-grid, .service-grid, .featured-articles, .event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card, .feature-card, .service-card, .article-card, .event-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 270px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,.feature-card:hover,.service-card:hover,.article-card:hover,.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
}
.card img, .feature-card img, .service-card img, .article-card img {
  border-radius: 14px 14px 0 0;
  margin-bottom: 12px;
}

.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-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testimonial-bg);
  padding: 26px 22px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  max-width: 360px;
  min-width: 220px;
  color: #174159;
  box-shadow: var(--shadow);
  font-size: 1.08rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

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

/* --- HEADER --- */
header {
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 2px 12px 0 rgba(1, 50, 76, 0.05);
  z-index: 1000;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px 18px 20px;
}
.main-nav > a img {
  height: 40px;
  width: auto;
  border-radius: 0;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav .cta-button {
  margin-left: 28px;
}

/* --- CTA BUTTONS --- */
.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: #01324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px 0 rgba(1,50,76,0.07);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.16s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.02em;
}
.cta-button:active, .cta-button:focus, .cta-button:hover {
  background: var(--secondary-dark);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(1,50,76,0.14);
  transform: translateY(-1px) scale(1.03);
}

/* --- HERO SECTIONS --- */
.hero-section {
  background: linear-gradient(90deg, #FFF9F5 60%, #F3F3F3 100%);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-section h1 {
  color: var(--primary);
  margin-bottom: 18px;
}
.hero-section p {
  color: #315973;
  margin-bottom: 20px;
  font-size: 1.15rem;
}

/* --- FEATURES --- */
.features-section, .services-section {
  background: #FFF;
}
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.feature-card, .service-card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
}
.feature-card img, .service-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(1,50,76,0.07);
}
.feature-card h3, .service-card h2 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: #01324C;
}
.feature-card p, .service-card p {
  margin-bottom: 10px;
}
.feature-price {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  background: #FFECD4;
  padding: 3px 14px;
  border-radius: 8px;
  font-size: 1.02rem;
  margin-top: 4px;
}

/* --- ARTICLE (ARTIKEL) --- */
.article-overview-section .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.category-tabs a {
  background: #f8f1e8;
  color: var(--primary);
  border-radius: 14px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 1.06rem;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 6px;
}
.category-tabs a:hover, .category-tabs a:focus {
  background: var(--secondary);
  color: #fff;
}
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-card {
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 210px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 22px 20px;
  transition: box-shadow 0.16s, transform 0.16s;
  position: relative;
}
.article-card h3 {
  color: #7A441B;
  margin-bottom: 10px;
  font-size: 1.13rem;
}

/* --- EVENTS --- */
.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.event-card {
  background: #FEF6EA;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.event-card h3 {
  margin-bottom: 8px;
}
.event-card a {
  margin-top: 14px;
  padding: 7px 19px;
  background: var(--secondary);
  color: #01324C;
  border-radius: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.event-card a:hover {
  background: var(--secondary-dark);
  color: #fff;
}

/* --- FAQ ACCORDION (static for now) --- */
.faq-accordion > div {
  margin-bottom: 20px;
  padding: 16px 14px;
  background: #F3F3F3;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(1,50,76,0.07);
}
.faq-accordion h3 {
  font-size: 1.08rem;
  color: #01324C;
  margin-bottom: 6px;
}

/* --- USP / VALUES / ABOUT / LISTS --- */
.usp-section ul, .about-section ul, .values-section ul, .team-section ul {
  margin-left: 0;
  margin-bottom: 22px;
}
.about-section ul li, .usp-section ul li, .values-section ul li, .team-section ul li {
  padding-left: 2em;
  position: relative;
  margin-bottom: 14px;
  color: #2E485E;
}
.about-section ul li:before, .usp-section ul li:before, .values-section ul li:before, .team-section ul li:before {
  content: '•';
  color: var(--secondary);
  font-size: 1.09em;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.4em;
}

/* --- CONTACT SECTION --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.contact-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #325156;
  background: #F3F3F3;
  padding: 10px 14px;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(1,50,76,0.05);
  margin-bottom: 8px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8c673c;
  font-size: 1rem;
}
.map-embed {
  background: #FFF7EF;
  border-radius: 15px;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 1px 8px 0 rgba(1,50,76,0.08);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 90px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: 0 -4px 22px 0 rgba(1,50,76,0.07);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px 28px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F3F3F3;
  font-size: 1rem;
  transition: color 0.18s;
  margin-bottom: 0;
  border-radius: 7px;
  padding: 4px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: rgba(255,255,255,0.10);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: 0;
}
.footer-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #F3F3F3;
  margin-top: 7px;
  opacity: 0.88;
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  text-align: center;
  background: #FFF7EF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- BUTTONS, FORMS, INTERACTIVE --- */
button, [type='button'], [type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  border-radius: 20px;
  background: var(--secondary);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(1,50,76,0.06);
  margin-bottom: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
button:hover, button:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(1,50,76,0.14);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.9rem;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(1,50,76,0.09);
  z-index: 2002;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100%; width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  padding: 0 12px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  align-items: flex-start;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  color: #FFF;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  border-radius: 14px;
  transition: background 0.19s, color 0.19s;
  width: 90%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff8ed;
  color: var(--primary);
  box-shadow: 0 -2px 16px 0 rgba(1,50,76,0.11);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 18px 16px 18px;
  animation: slideInBottom 0.46s cubic-bezier(.56,0,.34,1);
}
@keyframes slideInBottom {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2;
  margin-bottom: 0;
  color: var(--primary);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(1,50,76,0.05);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #E45F5C;
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary-dark);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #C23B36;
  color: #fff;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(1,50,76,0.44);
  z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.3s cubic-bezier(.5,0,.5,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: var(--primary);
  padding: 32px 28px;
  border-radius: 27px;
  box-shadow: 0 4px 44px 0 rgba(1,50,76,0.18);
  min-width: 320px;
  max-width: 92vw;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: popIn 0.23s cubic-bezier(.79,0,.24,1);
}
@keyframes popIn {
  from { transform: scale(0.97) translateY(40px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-close-modal {
  position: absolute;
  top: 18px; right: 22px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-category-list {
  width: 100%;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  padding: 10px 12px;
  background: #f5fdf6;
  border-radius: 11px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--secondary);
}
.cookie-category.essential label {
  color: #6A8F51;
}
.cookie-modal .cookie-actions {
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .card-container, .feature-grid, .service-grid, .event-cards, .featured-articles {
    justify-content: flex-start;
    gap: 16px;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .main-nav ul {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .footer-content {
    padding: 28px 12px 18px 12px;
  }
  .main-nav ul {
    gap: 4px;
  }
  .feature-card, .service-card, .event-card, .article-card {
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 2100;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero-section {
    text-align: center;
    padding: 26px 6px 28px 6px;
  }
  .about-section, .features-section, .services-section, .testimonials-section,
  .cta-section, .usp-section, .team-section, .values-section, .article-overview-section, .subscription-section,
  .contact-section, .legal-section, .thank-you-section, .events-section, .faq-section {
    padding: 32px 6px;
  }
  .feature-grid, .service-grid, .card-container, .content-grid, .testimonial-slider, .event-cards, .featured-articles {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
  .testimonials-section .testimonial-slider {
    flex-direction: column;
    gap: 19px;
  }
  .content-grid, .contact-details, .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 14px 7px 11px 7px;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .card, .feature-card, .service-card, .event-card, .article-card, .testimonial-card {
    padding: 13px 7px;
    min-width: 0;
    font-size: 0.98rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-brand img {
    height: 27px;
  }
  .cookie-modal {
    min-width: 92vw;
    padding: 19px 8px;
  }
}

/* --- UTILS & VISUAL EFFECTS --- */
::-webkit-scrollbar {
  width: 8px;
  background: #F3F3F3;
}
::-webkit-scrollbar-thumb {
  background: #D3D3D3;
  border-radius: 8px;
}
::-webkit-input-placeholder { color:#93a2b4; opacity:1;}
::-moz-placeholder { color:#93a2b4; opacity:1;}
:-ms-input-placeholder { color:#93a2b4; opacity:1;}
::placeholder { color:#93a2b4; opacity:1;}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
button, .cta-button, .cookie-btn, .feature-card, .service-card, .card, .testimonial-card, .event-card, .article-card, .category-tabs a {
  transition: background 0.16s, color 0.17s, box-shadow 0.16s, transform 0.17s;
}

/* Accessibility: ensure contrast in testimonials */
.testimonial-card, .testimonial-card p {
  background: var(--testimonial-bg);
  color: #1a2b37;
}
.testimonial-card cite {
  color: #7a8a9c;
}

/* Prevent overlapping & ensure card section margins */
.section > *:not(:last-child),
.hero-section > *:not(:last-child),
.features-section > *:not(:last-child),
.about-section > *:not(:last-child),
.testimonials-section > *:not(:last-child),
.cta-section > *:not(:last-child),
.services-section > *:not(:last-child),
.usp-section > *:not(:last-child),
.article-overview-section > *:not(:last-child),
.subscription-section > *:not(:last-child),
.team-section > *:not(:last-child),
.values-section > *:not(:last-child),
.legal-section > *:not(:last-child),
.thank-you-section > *:not(:last-child),
.contact-section > *:not(:last-child) {
  margin-bottom: 22px;
}

/* --- SPECIAL ELEMENTS --- */
.feature-card:last-child, .service-card:last-child, .event-card:last-child, .testimonial-card:last-child,
.article-card:last-child {
  margin-bottom: 0;
}
