/* ==================================
   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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F8F7F4;
  color: #23303D;
}

body {
  min-height: 100vh;
  font-family: 'Source Sans Pro', 'Georgia', Times, serif;
  font-size: 1rem;
  background: #F8F7F4;
  color: #23303D;
  line-height: 1.7;
  letter-spacing: 0.01em;
  position: relative;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

button, input, optgroup, select, textarea {
  font: inherit;
}
a {
  color: #224966;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16344A;
  text-decoration: underline;
}

ul, ol, dl {
  margin-left: 1.2em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  color: #224966;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  margin-bottom: 0.7em;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #23303D;
  border-left: 3px solid #FFD46A;
  padding-left: 18px;
  margin-bottom: 0.5em;
  background: rgba(255, 212, 106, 0.06);
}

hr {
  border: 0;
  border-top: 1px solid #E4E0D3;
  margin: 1.5em 0;
}

/* ==================================
   Brand Colors as CSS Variables
   ================================== */
:root {
  --rl-primary: #224966;
  --rl-secondary: #78A1C7;
  --rl-accent: #FFD46A;
  --rl-bg: #F8F7F4;
  --rl-muted: #EAE7DE;
  --rl-muted-dark: #D9D6CE;
  --rl-text: #23303D;
  --rl-text-light: #fff;
  --rl-shadow: 0 4px 24px rgba(34, 73, 102, 0.07), 0 1.5px 3px rgba(34,73,102,0.06);
}

/* ==================================
   Layout Containers & Utility Classes
   ================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.text-section {
  max-width: 760px;
  width: 100%;
}
.contact-highlight {
  background: var(--rl-muted);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 20px;
  color: var(--rl-primary);
  font-size: 1.04rem;
}

/* Mandatory Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container, .features-grid, .services-list, .workshop-list, .content-grid, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--rl-shadow);
  padding: 30px 25px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,73,102,0.06);
  margin-bottom: 20px;
  border: 1px solid #EAE7DE;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(34, 73, 102, 0.10);
}
.feature-item, .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--rl-shadow);
  padding: 25px 18px;
  flex: 1 1 220px;
  min-width: 220px;
}

/* ==================================
   HEADER & NAVIGATION
   ================================== */
header {
  background: var(--rl-bg);
  box-shadow: 0 2px 10px rgba(34, 73, 102, 0.025);
  border-bottom: 1.5px solid var(--rl-muted);
  padding-bottom: 0.7rem;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--rl-primary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--rl-secondary);
  border-bottom: 2px solid var(--rl-accent);
}

.cta-primary {
  background: var(--rl-primary);
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 18px rgba(34,73,102,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.23s, color 0.20s;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-left: 30px;
  margin-top: 0;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--rl-secondary);
  color: var(--rl-primary);
  box-shadow: 0 4px 28px rgba(34, 73, 102, 0.11);
}

header img {
  height: 38px;
  width: auto;
  margin-right: 30px;
}

/* ===============================
   Mobile Menu and Burger Button
   =============================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  color: var(--rl-primary);
  margin-left: 18px;
  outline: none;
  z-index: 111;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--rl-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 44px rgba(34, 73, 102, 0.10);
  z-index: 300;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.7,.07,.51,1.01), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: 24px;
  background: none;
  border: none;
  color: var(--rl-primary);
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--rl-accent);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  width: 100%;
  align-items: center;
}
.mobile-menu nav.mobile-nav a {
  color: var(--rl-primary);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  width: 90%;
  text-align: center;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: var(--rl-muted);
  color: var(--rl-secondary);
}

@media (max-width: 1100px) {
  header .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==================================
   HERO SECTIONS
   ================================== */
.hero {
  background: linear-gradient(98deg, #FAFAF8 65%, #EAE7DE 100%);
  border-bottom: 2px solid #EAE7DE;
  padding: 54px 0 50px 0;
  margin-bottom: 64px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--rl-primary);
  font-weight: 700;
}
.hero p {
  font-size: 1.19rem;
  color: #3a4d5c;
}
.hero .cta-primary {
  margin-left: 0;
  margin-top: 15px;
}

/* ==================================
   FEATURE LISTS, SERVICES, WORKSHOPS
   ================================== */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature, .service {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(34,73,102,0.09);
  padding: 32px 20px 26px 20px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  justify-content: flex-start;
  transition: box-shadow 0.19s;
}
.feature img, .service img {
  height: 38px;
  width: auto;
  margin-bottom: 8px;
}
.feature h3, .service h2 {
  font-size: 1.22rem;
  color: var(--rl-primary);
  font-family: 'Montserrat', 'Georgia', serif;
  margin-bottom: 0.5em;
  margin-top: 0;
  font-weight: 700;
}
.feature p, .service p {
  font-size: 1rem;
  color: #38506A;
}
.service .price {
  margin-top: auto;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.18rem;
  color: var(--rl-accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-table {
  overflow-x: auto;
  margin: 18px 0 30px 0;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-top: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(34,73,102,0.07);
  font-family: 'Source Sans Pro', 'Georgia', serif;
}
.pricing-table th, .pricing-table td {
  padding: 14px 24px;
  text-align: left;
}
.pricing-table th {
  background: #F4F3ED;
  color: var(--rl-primary);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
}
.pricing-table td {
  border-top: 1px solid #E4E0D3;
  font-size: 1.01rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 13px;
  font-size: 1rem;
}
.category-filters span {
  font-weight: 600;
  color: var(--rl-primary);
}
.category-filters a {
  color: var(--rl-secondary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.19s;
}
.category-filters a:hover,
.category-filters a:focus {
  color: var(--rl-primary);
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}
.article-list article {
  flex: 1 1 320px;
  background: #fff;
  padding: 22px 18px 22px 18px;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: var(--rl-shadow);
  transition: box-shadow 0.16s;
}
.article-list article:hover {
  box-shadow: 0 8px 32px rgba(34,73,102,0.10);
}
.article-list h3 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.12rem;
  color: var(--rl-primary);
}
.article-list p {
  margin: 10px 0;
  color: #587da1;
  font-size: 1rem;
}
.article-list a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  color: var(--rl-primary);
  font-size: 1.02rem;
  text-decoration: underline;
  transition: color 0.12s;
}
.article-list a:hover {
  color: var(--rl-accent);
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 10px;
}
.workshop-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--rl-shadow);
  padding: 18px 18px 12px 18px;
  margin-left: 0;
  font-size: 1.08rem;
  color: #375361;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 18px 0 10px 0;
}
.trust-badges img {
  height: 38px;
  width: auto;
  background: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(34,73,102,0.08);
}

/* ============================== 
   FAQ & DL
   ============================== */
.faqs-list dt {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  margin-bottom: 0.2em;
  font-size: 1.07rem;
  color: var(--rl-primary);
}
.faqs-list dd {
  margin: 0 0 1em 0.9em;
  color: #445869;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* =======================
   TESTIMONIALS
   ======================= */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,73,102,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px 18px 24px;
  border: 1.5px solid #EAE7DE;
  margin-bottom: 20px;
  font-size: 1.06rem;
}
.testimonial-card blockquote {
  border-left: 3px solid var(--rl-accent);
  padding-left: 18px;
  background: none;
  font-size: 1.08rem;
  color: var(--rl-primary);
  margin-bottom: 0;
}
.testimonial-meta {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #555B61;
  font-size: 1rem;
  margin-left: 12px;
  white-space: nowrap;
}

/* Contrast for testimonials */
.testimonial-card, .testimonial-card * {
  background: #fff !important;
  color: #110e00 !important;
}
.testimonial-card blockquote {
  color: #224966 !important;
}
.testimonial-meta {
  color: #375361 !important;
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #fff;
  border-top: 1.5px solid #EAE7DE;
  margin-top: 60px;
  font-family: 'Source Sans Pro', 'Georgia', serif;
  color: #223140;
  font-size: 1rem;
  box-shadow: 0 -2px 10px rgba(34,73,102,0.03);
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 20px 16px 20px;
}
.footer-nav {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--rl-primary);
  font-weight: 500;
  font-size: 1.01rem;
  padding: 3px 7px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
}
.footer-nav a:hover { background: var(--rl-muted); color: var(--rl-secondary); }
.contact-info {
  color: #375361;
  margin-bottom: 4px;
}
.contact-info a { color: var(--rl-secondary); text-decoration: underline; }
.legal-notice {
  color: #AB9B6D;
  font-size: 0.97rem;
  margin-top: 8px;
}

/* =======================
   FORM ELEMENTS & INPUTS
   ======================= */
input[type="text"], input[type="email"], textarea {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--rl-muted-dark);
  background: #fff;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
  transition: border 0.14s;
  font-family: 'Source Sans Pro', 'Georgia', serif;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--rl-primary);
  outline: none;
}
button, .button, .cta-primary {
  cursor: pointer;
  outline: none;
  transition: background 0.20s, color 0.16s, box-shadow 0.17s;
}

/* ==========================
   Cookie Consent Banner
   ========================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2200;
  background: #fff9e7;
  box-shadow: 0 -2px 16px rgba(34,73,102,0.11);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 2px solid #FFD46A;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  color: #4a4f3e;
  font-size: 1.06rem;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.cookie-btn {
  appearance: none;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  border-radius: 24px;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept {
  background: var(--rl-primary);
  color: #fff;
}
.cookie-btn.accept:hover {background: var(--rl-secondary); color: var(--rl-primary);}
.cookie-btn.reject {
  background: var(--rl-muted);
  color: var(--rl-primary);
}
.cookie-btn.reject:hover {background: #EAE7DE; color: var(--rl-secondary);}
.cookie-btn.settings {
  background: #fff;
  color: var(--rl-primary);
  border: 1.5px solid var(--rl-accent);
}
.cookie-btn.settings:hover {background: #fffbe2; color: var(--rl-primary);}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2300;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px rgba(34,73,102,0.16);
  width: 94vw;
  max-width: 420px;
  padding: 32px 26px 24px 26px;
  transform: translate(-50%, 60px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s, transform 0.22s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--rl-primary);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.3rem;
  margin-bottom: 11px;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: var(--rl-secondary);
  font-size: 1.7rem;
  position: absolute;
  top: 18px;
  right: 25px;
  cursor: pointer;
  padding: 2px 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  font-size: 1.02rem;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ece8d0;
  border-radius: 16px;
  position: relative;
  border: none;
  outline: none;
  transition: background 0.18s;
  margin-left: auto;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--rl-accent);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"]::after {
  left: 19px;
}
.cookie-modal .category-name {
  font-weight: 600;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #9e9265;
  margin-left: 15px;
  flex: 1;
}
.cookie-modal .cookie-btn {
  margin-top: 24px;
  width: 100%;
  padding: 11px 0;
  color: #fff;
  background: var(--rl-primary);
}
.cookie-modal .cookie-btn:hover {
  background: var(--rl-secondary);
  color: var(--rl-primary);
}

/* Modal background overlay */
.cookie-modal-bg {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(34,73,102,0.13);
  z-index: 2290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-bg.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================
   Responsive: Mobile First
   ============================ */
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding: 36px 0 34px 0;
    margin-bottom: 40px;
  }
  .hero .content-wrapper {
    gap: 18px;
    padding: 0 2vw;
  }
  .features-grid, .services-list, .content-grid, .article-list {
    gap: 16px;
  }
  .feature, .service, .article-list article {
    min-width: 170px;
    max-width: 100%;
    padding: 20px 10px 19px 14px;
  }
  .workshop-list li {
    padding: 10px 10px 7px 12px;
    font-size: 1.0rem;
  }
  .testimonial-card {
    padding: 11px 6px 10px 11px;
    gap: 10px;
    font-size: 0.97rem;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.55rem; }
  .hero h1 { font-size: 1.42rem; }
  .section {
    padding: 22px 8px;
    margin-bottom: 30px;
  }
  .feature, .service, .article-list article {
    min-width: 100%;
    flex: 1 1 100%;
  }
  .features-grid, .services-list, .content-grid, .article-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 11px 6px 10px 11px;
    font-size: 0.95rem;
  }
  .trust-badges {
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
  }
  .contact-info br { display: none; }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 490px) {
  body, html {
    font-size: 15px;
  }
  .cookie-modal {
    padding: 14vw 4vw;
    font-size: 1rem;
  }
  .cookie-modal .close-btn {
    top: 8px; right: 12px;
  }
}

/* ================================
   Micro-interactions & Animations
   ================================ */
.cta-primary, .cookie-btn, .feature, .service, .testimonial-card, .article-list article {
  transition: box-shadow 0.23s, background 0.18s, color 0.16s;
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.98);
}
.feature:hover, .service:hover {
  box-shadow: 0 8px 32px rgba(34,73,102,0.10);
  background: #F8F7F4;
}

input[type="text"]::placeholder {
  color: #bbb9ae;
  opacity: 1;
  font-size: 0.97rem;
}

/* Focus outline for accessibility */
button:focus, .cta-primary:focus, .cookie-btn:focus, a:focus {
  outline: 2px solid var(--rl-secondary);
  outline-offset: 2px;
}

/* Remove absolute for cards, only for decorations (example here for overlay) */

/* ==================================
   Miscellaneous
   ================================== */
.section:last-child {
  margin-bottom: 0;
}
header,
.container,
.content-wrapper,
.card-container,
.features-grid,
.services-list,
.content-grid,
.text-image-section,
.testimonial-card,
.feature-item {
  gap: 20px;
}

/* Prevent overlapping everywhere */
.card, .service, .feature, .testimonial-card,
.article-list article, .workshop-list li {
  margin-bottom: 20px !important;
}

/* Ensure all cards/sections are separated */
.content-wrapper > *, .container > * {
  margin-bottom: 20px;
}
/* Remove margin in last element */
.content-wrapper > *:last-child, .container > *:last-child {
  margin-bottom: 0;
}

/* Hide scrollbars on mobile-menu overlay */
body.mobile-menu-open {
  overflow: hidden;
}

/* End of Styles */
