/* ----------------------------------------
   CSS Reset & Normalize
-------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}
body {
  min-height: 100vh;
  font-family: Arial, 'Lora', serif;
  background-color: #faf9f5;
  color: #243217;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
ul, ol {
  list-style: none;
}
a {
  color: #206A38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #b89c3f;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Arial, serif;
  font-weight: 700;
  color: #13341D;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
p, ul, ol, blockquote { font-size: 1.125rem; margin-bottom: 16px; }
blockquote {
  border-left: 4px solid #beaf6a;
  color: #685b27;
  background: #f5eed7;
  padding: 16px 22px;
  margin: 16px 0 10px 0;
  font-style: italic;
  border-radius: 12px 0 0 12px;
}
cite {
  display: block;
  margin-top: 8px;
  color: #725f24;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ----------------------------------------
   Brand Colors And Variables (fallbacks)
-------------------------------------------*/
:root {
  --color-primary: #206A38;
  --color-secondary: #566C3A;
  --color-accent: #F5EED7;
  --color-gold: #beaf6a;
  --color-gold-dark: #887225;
  --color-paper: #faf9f5;
  --color-bg: #f5eed7;
  --color-text: #243217;
  --color-shadow: rgba(34, 30, 0, 0.08);
}

/* ----------------------------------------
   Typography & Visual Hierarchy
-------------------------------------------*/
.display {
  font-family: 'Lora', Arial, serif;
}
body, .body {
  font-family: Arial, 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 400;
}
.subheadline {
  color: #725f24;
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-family: 'Lora', Arial, serif;
  font-weight: 400;
}

/* ----------------------------------------
   Container, Section & Layout Spacing
-------------------------------------------*/
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 22px;
}
.section,
main > section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  background: #f5eed7;
  border-radius: 14px;
  box-shadow: 0 6px 24px var(--color-shadow);
  padding: 32px 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px var(--color-shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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 {
  background: #fff;
  color: #243217;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 20px 0;
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-shadow);
  font-size: 1.15rem;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 10px;
  background: #f5eed7;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 14px;
}

/* ----------------------------------------
   Header, Navigation, Logo
-------------------------------------------*/
header {
  background: var(--color-paper);
  box-shadow: 0 2px 18px var(--color-shadow);
  min-height: 82px;
  width: 100%;
  position: relative;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 82px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 62px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Lora', Arial, serif;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-gold-dark);
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg,#beaf6a, #e9d98d 96%);
  color: #13270f;
  font-family: 'Lora', Arial, serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 6px var(--color-shadow);
  margin-left: 14px;
  text-shadow: 0 1px 0 #fffceb;
  border: 2px solid #beaf6a;
  position: relative;
  transition: box-shadow 0.2s, background 0.18s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg,#e6ca31,#bea500 80%);
  box-shadow: 0 4px 16px rgba(190,175,106,0.25);
  color: #1c210e;
}
.cta-secondary {
  display: inline-block;
  border: 2px solid #beaf6a;
  background: transparent;
  color: var(--color-gold-dark);
  font-family: 'Lora', Arial, serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 28px;
  border-radius: 24px;
  text-shadow: none;
  margin-top: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #beaf6a;
  color: #13270f;
  box-shadow: 0 4px 12px rgba(190,175,106,0.18);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 101;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-accent);
}

/* ----------------------------------------
   Mobile Menu Overlay
-------------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: rgba(245, 238, 215, 0.98);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.6,0,0.4,1);
  will-change: transform;
  padding: 0 0 0 0;
  box-shadow: 0 0 32px rgba(34, 31, 0, 0.18);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  z-index: 1202;
  cursor: pointer;
  opacity: 0.90;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #beaf6a;
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 100px 0 0 46px;
}
.mobile-nav a {
  color: #206A38;
  font-size: 1.35rem;
  font-family: 'Lora', Arial, serif;
  padding: 8px 0;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  min-width: 220px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #8d6c0e;
}

/* ----------------------------------------
   Hero Section
-------------------------------------------*/
.hero {
  background: linear-gradient(135deg, #f5eed7 70%, #ebe6d0 100%);
  padding: 52px 20px 46px 20px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 44px var(--color-shadow);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #beaf6a;
  text-shadow: 0 1px 6px #fffbe4, 0 2px 12px #e2d28177;
}
.hero .subheadline {
  color: #566C3A;
  font-size: 1.25rem;
  margin-bottom: 26px;
}

/* ----------------------------------------
   Feature Grids/List/Highlights
-------------------------------------------*/
.feature-grid, .feature-list, .benefits-grid, .service-highlights ul, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.feature-grid li, .feature-list li, .benefits-grid > div, .event-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 18px 18px 16px 18px;
  min-width: 205px;
  font-size: 1.09rem;
  color: #344218;
  margin-bottom: 0;
  position: relative;
}
.feature-grid img, .feature-list img, .benefits-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px #ead99884);
}

/* ----------------------------------------
   Service Cards & Teasers
-------------------------------------------*/
.service-teasers, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 13px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
  border: 2px solid #f3ede3;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 6px 32px rgba(190,175,106,.21);
  border-color: #e0d199;
}
.service-card h3 {
  font-size: 1.225rem;
  color: var(--color-primary);
}
.service-card .service-price {
  display: inline-block;
  color: #bea500;
  background: #f5eed7;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 8px;
  margin-top: 10px;
}
.service-highlights ul li {
  background: #fff;
  padding: 10px 16px;
  border-radius: 9px;
  box-shadow: 0 2px 6px var(--color-shadow);
  margin-bottom: 0;
  color: #566C3A;
}

/* ----------------------------------------
   Pricing & Table Styles
-------------------------------------------*/
.price-table, .price-comparison {
  width: 100%;
  background: #f7f6f0;
  border-radius: 12px;
  padding: 14px 20px 20px 20px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-top: 26px;
  margin-bottom: 20px;
}
.price-table h3, .price-comparison h3 { font-size: 1.2rem; color: #b89c3f; }
.price-table table, .price-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: none;
  font-size: 1.04rem;
  margin-top: 10px;
}
.price-table th, .price-comparison th {
  background: #beaf6a;
  color: #fff;
  padding: 8px 14px;
  font-weight: bold;
}
.price-table td, .price-comparison td {
  background: #fff;
  color: #243217;
  padding: 8px 14px;
  font-size: 1.04rem;
  border-bottom: 1px solid #ece6c6;
}
.price-table tr:last-child td, .price-comparison tr:last-child td {
  border-bottom: 0;
}

/* ----------------------------------------
   CTA Section
-------------------------------------------*/
.cta {
  background: #206A38;
  border-radius: 28px;
  color: #fff;
  padding: 48px 20px 36px 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 4px 22px var(--color-shadow);
}
.cta h2 { color: #e9d98d; }
.cta p { color: #fffceb; }
.cta .cta-primary {
  margin-top: 22px;
  margin-left: 0;
  font-size: 1.2rem;
}

/* ----------------------------------------
   Footer
-------------------------------------------*/
footer {
  width: 100%;
  background: #fff;
  border-top: 3px solid #beaf6a;
  margin-top: 48px;
  padding-top: 28px;
  font-size: 1rem;
  color: #344218;
  box-shadow: 0 -4px 20px rgba(163,153,94,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.branding {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-direction: column;
  min-width: 210px;
}
.branding img {
  height: 44px;
  width: auto;
  margin-bottom: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 180px;
  align-items: flex-start;
}
.footer-nav a {
  color: #8d6c0e;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #b79b34;
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  flex: 2;
  min-width: 210px;
  gap: 4px;
}
footer small {
  width: 100%;
  color: #caaa61;
  font-size: 0.98rem;
  text-align: right;
  margin-top: 10px;
  opacity: 0.70;
}

/* ----------------------------------------
   Testimonial Cards (Contrast ensured)
-------------------------------------------*/
.testimonials {
  background: #f5eed7;
  border-radius: 18px;
  padding: 44px 24px 32px 24px;
  margin-bottom: 60px;
  box-shadow: 0 3px 18px var(--color-shadow);
}
.testimonials h2 {
  color: #7d6808;
}
.testimonial-card {
  margin-bottom: 20px;
  background: #fff;
  color: #243217;
  box-shadow: 0 2px 8px var(--color-shadow);
  border-radius: 14px;
  border-left: 6px solid #beaf6a;
}
.testimonial-card blockquote {
  background: none;
  filter: none;
  border: none;
  margin-bottom: 0;
  padding: 0;
  color: #344218;
}
.testimonial-card cite {
  color: #b79b34;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 6px;
}

/* ----------------------------------------
   Miscellaneous Elements
-------------------------------------------*/
.event-list p,
.members-area-teaser p,
.calendar-view p {
  margin-bottom: 8px;
}
.calendar-view {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.members-area-teaser {
  margin: 14px 0 8px;
  color: #60571b;
  font-size: 1.1rem;
  font-family: 'Lora', Arial, serif;
}
.membership-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0 0;
}
.membership-types li {
  background: #fff;
  color: #47591d;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* ----------------------------------------
   Cookie Consent Banner
-------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(250, 246, 221, 0.98);
  color: #4b4221;
  box-shadow: 0 -4px 24px 0 rgba(163,153,94,0.118);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 18px 12px;
  font-size: 1.08rem;
  gap: 28px;
  font-family: 'Lora', Arial, serif;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.5,0,.5,1), opacity 0.3s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  display: inline-block;
  cursor: pointer;
  border-radius: 22px;
  font-family: 'Lora', Arial, serif;
  font-size: 1.08rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  padding: 8px 20px;
  margin-left: 0;
  border: none;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#beaf6a,#e9d98d 90%);
  color: #233217;
  border: 2px solid #beaf6a;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #e6ca31;
  color: #1c210e;
}
.cookie-btn.reject {
  background: none;
  border: 2px solid #beaf6a;
  color: #b89c3f;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #beaf6a;
  color: #243217;
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid #566C3A;
  color: #566C3A;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #e7e3cf;
  color: #3b4730;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 420px;
  background: #fff;
  box-shadow: 0 8px 42px rgba(186,175,106, .21);
  border-radius: 18px;
  transform: translate(-50%, 40%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.2s;
  padding: 34px 26px 20px 26px;
}
.cookie-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.cookie-modal h3 {
  margin-bottom: 12px;
  font-size: 1.21rem;
  color: #beaf6a;
  font-family: 'Lora', Arial, serif;
}
.cookie-modal .cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
}
.cookie-modal .cookie-cat label {
  font-weight: bold;
  color: #566C3A;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #ebe6d0;
  position: relative;
  margin-left: 5px;
  cursor: pointer;
  border: 2px solid #e0d199;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-toggle.enabled {
  background: linear-gradient(90deg,#beaf6a,#e9d98d 90%);
  border-color: #bea500;
}
.cookie-toggle.disabled {
  background: #f2ecc2;
  border-color: #d4c061;
}
.cookie-toggle-knob {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
  transition: left 0.18s;
}
.cookie-toggle.enabled .cookie-toggle-knob {
  left: 17px;
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #b79b34;
  opacity: .92;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  color: #725f24;
  opacity: 1;
}

/* ----------------------------------------
   Responsive Design: Mobile First
-------------------------------------------*/
@media (max-width: 1024px) {
  .container { max-width: 900px; }
  .main-nav { gap: 20px; }
  .service-card { min-width: 210px; max-width: 300px; }
  .feature-grid li, .feature-list li, .benefits-grid > div { min-width: 140px; }
  .footer-nav, .contact-info { min-width: 140px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper { padding-right: 0; }
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container { flex-direction: row; gap: 10px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.05rem;
    padding: 10px 18px;
  }
  .hero {
    padding: 30px 8px 30px 8px;
    border-radius: 0 0 24px 24px;
  }
  .section, main > section { padding: 34px 5px; }
  .testimonials { padding: 28px 5px 18px 5px; }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container, .service-teasers, .service-cards, .feature-grid, .feature-list, .benefits-grid, .service-highlights ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card, .service-card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 16px 0;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .feature-grid li, .feature-list li, .benefits-grid > div {
    min-width: 0;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 4px; }
  .hero h1 { font-size: 1.48rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.02rem; }
  .cta { border-radius: 12px; padding: 24px 5px 20px 5px; }
  .testimonials { padding: 12px 2px 12px 2px; }
  .cookie-modal { padding: 18px 4vw 12px 4vw; }
}

/* ----------------------------------------
   Smooth Interactivity & Micro-Animations
-------------------------------------------*/
a, button, .cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, opacity 0.13s, transform 0.14s;
}
.service-card, .testimonial-card, .feature-item, .feature-grid li, .benefits-grid > div {
  transition: box-shadow 0.17s, transform 0.15s;
  will-change: transform;
}
.service-card:hover, .feature-item:hover, .feature-grid li:hover, .benefits-grid > div:hover,
.service-card:focus-within, .feature-item:focus-within, .feature-grid li:focus-within,
.benefits-grid > div:focus-within {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 28px rgba(190,175,106,.15);
}
.button:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 7px;
  border: 1px solid #e1e1e1;
}

/* ----------------------------------------
   Utility Classes
-------------------------------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-24 { margin-top: 24px !important; }
.text-center { text-align: center !important; }
.hide { display: none !important; }

/* ----------------------------------------
   Focus Styles (Accessibility)
-------------------------------------------*/
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #beaf6a;
  outline-offset: 2px;
}

/* ----------------------------------------
   END OF STYLE.CSS
-------------------------------------------*/
