/* ----------------------------- CSS RESET & 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, menu, 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, 
main, 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 {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #253133;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #26737A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8EAE6E;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, .cta-btn, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

/* ----------------- FONT IMPORTS ----------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ---------------------- BRAND COLORS & VARIABLES ---------------------- */
:root {
  --primary: #26737A;
  --primary-hover: #205e62;
  --secondary: #8EAE6E;
  --secondary-hover: #79965d;
  --accent: #F1F5E3;
  --gray-bg: #F7F9F6;
  --text-primary: #253133;
  --text-secondary: #49676c;
  --white: #fff;
  --black: #132026;
  --shadow: 0 4px 18px 0 rgba(38, 115, 122, 0.07);
  --border-radius-card: 20px;
  --border-radius-btn: 12px;
  --gap-lg: 32px;
  --gap-md: 24px;
  --gap: 20px;
  --gap-sm: 12px;
  --shadow-card: 0 2px 10px 0 rgba(38,115,122,0.06);
}

/* ---------------------------- TYPOGRAPHY ---------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.025em;
  line-height: 1.15;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 0.4em;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
  color: var(--secondary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--primary);
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 0.9em;
  color: var(--text-primary);
}
strong { font-weight: 700; }
.subheadline {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 1.2em;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Typography scale for geometric_structured visual hierarchy */
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

/* ------------------------ LAYOUT: STRUCTURED CONTAINERS ------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------------- FLEXBOX PATTERNS (MANDATORY) ------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
}
.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: var(--accent);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Additional FLEXBOX-BASED GRIDS and content blocks */
.feature-grid, .value-grid, .benefit-grid, .kurse-list, .team-list, .pricing-table, .faq-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.feature, .value, .benefit, .kurs, .pricing-option, .trainer-bio-card, .faq-item {
  background: var(--white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow);
  flex: 1 1 270px;
  min-width: 260px;
  margin-bottom: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--accent);
  position: relative;
  transition: box-shadow 0.2s, border 0.2s, transform 0.15s;
}
.feature:hover, .benefit:hover, .value:hover, .kurs:hover, .pricing-option:hover, .trainer-bio-card:hover {
  box-shadow: 0 6px 32px 0 rgba(38,115,122,0.16);
  border: 1.5px solid var(--secondary);
  transform: translateY(-4px) scale(1.015);
}
@media (max-width: 900px) {
 .feature, .value, .benefit, .kurs, .pricing-option, .trainer-bio-card {
    min-width: 100%;
  }
}


/* ------------------ HERO, CTA-SECTIONS & HIGHLIGHTS ------------------ */
.hero-section {
  background: var(--accent);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 44px 0 44px 0;
}
.hero-section .container,
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section {
  background: var(--gray-bg);
  border-top: 4px solid var(--secondary);
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
  padding: 40px 0 40px 0;
}
.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  padding: 16px 36px;
  border-radius: var(--border-radius-btn);
  text-decoration: none;
  margin-top: 18px;
  box-shadow: 0 2px 16px 0 rgba(38,115,122,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--black);
  box-shadow: 0 6px 24px 0 rgba(142,174,110,0.14);
}

/* -------------------------- HEADER & NAVIGATION -------------------------- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 40;
  box-shadow: 0 2px 12px 0 rgba(38,115,122,0.04);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

header img {
  height: 46px;
  width: auto;
  margin-right: 14px;
}

.mobile-menu-toggle {
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-left: 12px;
  z-index: 120;
  transition: background 0.2s;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--black);
}

/* -------------------- MOBILE NAVIGATION SLIDE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  max-width: 380px;
  background: var(--primary);
  box-shadow: -2px 0 32px 0 rgba(38,115,122,0.22);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.7, 0.1, 0.2, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 48px 24px;
  gap: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2rem;
  color: var(--white);
  border: none;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 8px;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--black);
}

/* Backdrop for mobile menu */
.mobile-menu::before {
  content: '';
  display: none;
}
.mobile-menu.open::before {
  display: block;
}


/* ------------------------ RESPONSIVE NAVIGATION ------------------------ */
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .cta-btn {
    font-size: 1.1rem;
    padding: 14px 18px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header .cta-btn {
    display: none;
  }
}

@media (min-width: 801px) {
  .mobile-menu {
    display: none;
  }
}

/* ---------------- FOOTER ------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 38px;
  padding-bottom: 24px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
.footer-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
}
.footer-contact-info img {
  vertical-align: middle;
  margin-right: 7px;
  width: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
}
.footer-brand img {
  width: 38px;
  height: auto;
}

@media (max-width: 700px) {
  .footer-contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
}

/* -------------------- RESPONSIVE FLEX DIRECTION -------------------- */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid, .value-grid, .benefit-grid, .kurse-list, .team-list, .pricing-table, .faq-list, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ------------------- SECTIONS, SPACING, & CARDS --------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 600px) {
  section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .hero-section, .cta-section {
    padding: 28px 0;
  }
}

/* ------------------- TESTIMONIALS -------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  flex: 1 1 330px;
  background: var(--accent);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 255px;
}
.testimonial-card p {
  font-size: 1.03rem;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}
.testimonial-author {
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.stars img {
  height: 20px;
  margin-right: 3px;
}

/* Ensure readable text on testimonials with fallback - highly contrasted */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }
}

/* ------------------ PRICING / FAQ ------------------- */
.pricing-table {
  margin-bottom: var(--gap-lg);
}
.pricing-option {
  border: 2px solid var(--secondary);
  padding: 32px 22px;
  border-radius: var(--border-radius-card);
  background: var(--white);
  box-shadow: 0 6px 26px 0 rgba(142,174,110,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, border 0.19s, transform 0.12s;
}
.pricing-option .preis {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.3rem;
  margin-top: 0.3em;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-option:hover, .pricing-option:focus {
  box-shadow: 0 14px 45px 0 rgba(38,115,122,0.10);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.025);
}
.faq-item {
  background: var(--accent);
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 17px 17px 17px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--secondary);
}
.faq-item h3 {
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ------------------ Chef STRUCTURED GEOMETRY ------------------- */
.feature img,
.value img,
.benefit img { width: 40px; height: 40px; margin-bottom: 6px; }
.feature, .benefit, .value {
  border-radius: 18px 4px 18px 18px;
  border-width: 2.5px;
  border-style: solid;
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  position: relative;
  background: var(--white);
}
.feature::before, .benefit::before, .value::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 14px;
  right: 10px;
  background: rgba(142,174,110,0.13);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 0;
  border-radius: 9px 3px 14px 14px;
}


/* ---- TEAM CARDS ---- */
.trainer-bio-card {
  border-left: 6px solid var(--primary);
  background: var(--gray-bg);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  padding: 24px 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
  margin-bottom: 20px;
}
.trainer-bio-card h2 {
  font-size: 1.18rem;
  color: var(--secondary);
  margin-bottom: 0.35em;
  margin-top: 0;
}
.trainer-bio-card p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.4em;
}

/* --- INCLUSIONS LIST --- */
.inclusions-list {
  background: var(--accent);
  border-radius: 10px;
  padding: 24px;
  margin-top: 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.inclusions-list h3 {
  margin-bottom: 6px;
  color: var(--primary);
}

/* ------------- CONTACT DETAILS BLOCKS ------------- */
.contact-details, .contact-location {
  margin-bottom: 24px;
}
.contact-details p, .contact-location p {
  margin-bottom: 0.7em;
}
.contact-details a, .contact-location a {
  color: var(--primary);
  text-decoration: underline;
}

/* ------------- THANK YOU PAGE ------------ */
main .cta-btn {
  margin-top: 2.2em;
}

/* ------------- GEOMETRIC STRUCTURE SHAPES ------------- */
/* Decorative triangles/corners using borders for geometric accents if desired */
.section-title-deco {
  position: relative;
  padding-left: 18px;
}
.section-title-deco::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 18px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 35%, 50% 100%);
  border-radius: 1px;
}

/* ----------------- BUTTONS ----------------- */
button, .cta-btn {
  box-shadow: var(--shadow-card);
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* ------------- MICRO-INTERACTIONS / TRANSITIONS ---------- */
.card, .feature, .benefit, .faq-item, .pricing-option, .trainer-bio-card {
  transition: box-shadow 0.17s, border 0.17s, transform 0.12s;
}
.card:hover, .feature:hover, .benefit:hover, .faq-item:hover, .pricing-option:hover, .trainer-bio-card:hover {
  box-shadow: 0 10px 28px 0 rgba(38,115,122,0.14);
  transform: translateY(-2px) scale(1.01);
  border-color: var(--primary);
}


/* ----------- COOKIE CONSENT BANNER & MODAL ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 -2px 36px 0 rgba(38,115,122,0.12);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 30px 18px 30px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s, bottom 0.36s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  max-width: 650px;
  color: var(--text-primary);
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--secondary);
  color: var(--black);
}
.cookie-banner .reject {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #788d52;
  color: var(--black);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--primary);
  color: var(--white);
}

/* ----------- COOKIE MODAL ----------- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,115,122,0.40);
  z-index: 2222;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: var(--black);
  border-radius: 18px;
  box-shadow: 0 8px 42px 0 rgba(38,115,122,0.14);
  padding: 32px 30px 28px 30px;
  width: 90vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2230;
  animation: cookieModalSlideIn 0.41s cubic-bezier(0.7, 0.2, 0.1, 1);
}
@keyframes cookieModalSlideIn {
  0% { transform: translateY(80px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal .modal-title {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--secondary);
  cursor: pointer;
  border-radius: 7px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .modal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 7px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  border-radius: 8px;
  font-family: 'Montserrat', Arial;
  font-weight: 700;
  padding: 10px 22px;
}
.cookie-modal .accept { background: var(--primary); color: var(--white); }
.cookie-modal .accept:hover, .cookie-modal .accept:focus { background: var(--secondary); color: var(--black); }
.cookie-modal .reject { background: var(--secondary); color: var(--white); }
.cookie-modal .reject:hover, .cookie-modal .reject:focus { background: #849b61; color: var(--black); }


/* -------------- UTILITY CLASSES ------------------ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap20 { gap: 20px; }
.text-center { text-align: center; }

/* -------------- ACCESSIBILITY ------------------ */
:focus { outline: 2px solid var(--secondary); outline-offset: 3px; }

/* --------------- SCROLLBAR STYLE -------------- */
::-webkit-scrollbar { width: 9px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 8px; }

/* -------- END OF CSS -------- */
