/* ===================================================
   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, 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 { font-size: 16px; }
body {
  min-height: 100vh;
  background: #f3f5f8;
  color: #181A20;
  font-family: 'Roboto', Arial, Verdana, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F7F7F9;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, .cta-primary, input, select { font-family: inherit; }
textarea { font-family: inherit; }
:focus { outline: 2px solid #FFD700; outline-offset: 2px; }

/* ===================================================
   Luxury Premium Color Palette & Variables
   =================================================== */
:root {
  --lux-primary: #22487A;
  --lux-gold: #B89761;
  --lux-gold-light: #E8D7B7;
  --lux-secondary: #19A967;
  --lux-bg: #F7F7F9;
  --lux-surface: #fff;
  --lux-text: #181A20;
  --lux-muted: #75798B;
  --lux-shadow: 0 4px 18px 0 rgba(24,30,40,0.10);
  --lux-radius: 18px;
  --lux-radius-sm: 10px;
  --lux-border: 1px solid #ECECEC;
}

/* ===================================================
   Font Import (Montserrat for Display, Roboto for Body)
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.015em;
  color: var(--lux-primary);
  font-weight: 700;
}
h1 { font-size: 2.6rem; line-height: 1.12; margin-bottom: 28px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.22; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
p, ul, ol, table, section, .section { font-size: 1rem; line-height: 1.6; color: var(--lux-text); }
strong, b { font-weight: 600; color: var(--lux-primary); }
subheadline, .subheadline, .success-message { font-size: 1.18rem; color: var(--lux-muted); margin-bottom: 12px; }

/* ===================================================
   General Layout Containers
   =================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section,
section:not(.hero):not(.thankyou):not(.probestunde-hero) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-surface);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  box-sizing: border-box;
} 
section.hero, 
section.thankyou, 
section.probestunde-hero {
  margin-bottom: 60px;
  padding: 56px 20px 64px 20px;
  background: linear-gradient(120deg, var(--lux-bg) 65%, var(--lux-gold-light) 99%);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  display: flex;
  align-items: center;
}

/* ===================================================
   Navigation: Desktop & Mobile
   =================================================== */
header {
  width: 100%;
  background: var(--lux-surface);
  box-shadow: 0 2px 12px rgba(34,72,122,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
a.logo img {
  height: 42px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  position: relative;
  color: var(--lux-text);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.2s;
}
nav a:hover,
nav a:focus {
  color: var(--lux-gold);
}
nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--lux-gold);
  transition: width 0.22s cubic-bezier(.4,0,.2,1);
  margin-top: 5px;
  border-radius: 1px;
}
nav a:hover::after, nav a:focus::after {
  width: 80%;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lux-gold);
  color: #181A20;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--lux-radius-sm);
  padding: 12px 38px;
  box-shadow: 0 3px 14px 0 rgba(184,151,97,0.10);
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  box-sizing: border-box;
  text-shadow: 0 1px 0 #f7e9d4;
}
.cta-primary:hover, .cta-primary:focus {
  background: #DFC58C;
  color: #181A20;
  box-shadow: 0 7px 24px 0 rgba(184,151,97,0.22);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--lux-primary);
  cursor: pointer;
  margin-left: auto;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: var(--lux-gold);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 72, 122, 0.99);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding-top: 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--lux-gold);
  align-self: flex-end;
  margin: 0 30px 14px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: var(--lux-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-left: 34px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 11px 0;
  border-radius: var(--lux-radius-sm);
  transition: color 0.19s, background 0.14s;
  width: 100%;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-gold);
  color: #1A1D25;
}

@media (max-width: 1100px) {
  nav {
    gap: 18px;
  }
  .cta-primary {
    padding: 10px 22px;
    font-size: 0.98rem;
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header .container nav, header .container .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  section.hero, section.probestunde-hero, section.thankyou {
    padding: 38px 6px 38px 6px;
  }
  .section, section:not(.hero):not(.thankyou):not(.probestunde-hero) {
    padding: 22px 8px;
  }
}

/* ===================================================
   Flex Utility Patterns (per requirements)
   =================================================== */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--lux-surface);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  padding: 26px 22px;
  transition: box-shadow 0.17s;
}
.card:hover { box-shadow: 0 5px 22px 0 rgba(184,151,97,0.09); }
.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: var(--lux-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(34,72,122,0.06);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}

/* ============================
   Responsive Flex Columns
   ============================ */
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .team-grid, .benefits-list {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column !important; gap: 20px; align-items: center; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* ===================================================
   Hero Section Styles
   =================================================== */
.hero, .probestunde-hero, .thankyou {
  background: linear-gradient(115deg, #fff 60%, var(--lux-gold-light) 100%);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  display: flex; align-items: center;
  min-height: 350px;
}
.hero .content-wrapper,
.probestunde-hero .content-wrapper,
.thankyou .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .thankyou h1 { color: var(--lux-primary); margin-bottom: 8px; }
.hero .subheadline { color: var(--lux-muted); margin-bottom: 13px; }
.hero .cta-primary {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .hero h1, .thankyou h1 { font-size: 1.7rem; }
}

/* ===================================================
   Features & Benefit Sections
   =================================================== */
.features, .benefits {
  background: var(--lux-bg);
  border-radius: var(--lux-radius);
}
.features h2, .benefits h2 { color: var(--lux-gold); }
.feature-grid, .benefits-list {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 22px;
}
.feature, .benefit {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(184,151,97,0.07);
  padding: 24px 20px;
  flex: 1 1 250px;
  min-width: 210px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  border-left: 4px solid var(--lux-gold);
  transition: box-shadow 0.19s, border-color 0.19s;
}
.feature:hover, .benefit:hover {
  box-shadow: 0 8px 32px 0 rgba(234,175,60,0.10);
  border-left-color: var(--lux-secondary);
}
.feature img, .benefit img {
  width: 46px; height: 46px;
  margin-bottom: 8px;
}
.feature h3, .benefit h3 { color: var(--lux-primary); font-size: 1.11rem; }
.feature p, .benefit p { color: var(--lux-text); font-size: 0.99rem; }

/* ===================================================
   Team & Values
   =================================================== */
.team-grid {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 12px;
}
.team-member {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: var(--lux-shadow);
  padding: 25px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 15px;
}
.team-member h3 { color: var(--lux-gold); font-size: 1.1rem; margin-bottom: 4px; }
.team-member p { color: var(--lux-text); }
.usp-list, .core-values-list {
  padding-left: 28px;
  color: var(--lux-muted);
  margin-top: 15px;
}
.usp-list li, .core-values-list li { margin-bottom: 7px; }

/* ===================================================
   Cards (for news, services, etc.)
   =================================================== */
.card, .service-item {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: var(--lux-shadow);
  padding: 28px 20px 18px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 3px solid var(--lux-gold);
  display: flex; flex-direction: column; gap: 11px;
  transition: box-shadow 0.15s, border-color 0.17s;
}
.service-item:hover, .card:hover {
  box-shadow: 0 8px 32px 0 rgba(184,151,97,0.10);
  border-left-color: var(--lux-secondary);
}
.service-item h3 { color: var(--lux-primary); font-size: 1.05rem; margin-bottom: 4px; }
.service-item a, .card a {
  color: var(--lux-gold);
  font-size: 1.025rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 7px;
  transition: color 0.18s;
}
.service-item a:hover, .card a:hover {
  color: var(--lux-secondary);
}

/* ===================================================
   News & Updates
   =================================================== */
.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.news-list li, .update-list li {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  padding: 22px 18px;
  box-shadow: var(--lux-shadow);
  color: var(--lux-text);
  margin-bottom: 10px;
  border-left: 3px solid var(--lux-gold);
}
.news-list li strong { color: var(--lux-primary); }
.news-link {
  color: var(--lux-gold);
  font-weight: 600;
  font-size: 1.07rem;
  transition: color 0.16s;
}
.news-link:hover, .news-link:focus {
  color: var(--lux-secondary);
  text-decoration: underline;
}
.publish-date {
  font-size: 0.93rem;
  color: var(--lux-muted);
  margin-bottom: 4px;
  display: block;
}
.announcement {
  background: #fffbe6;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 0 0 1px #E9D180, 0 2px 10px 0 rgba(184,151,97,0.05);
  padding: 30px 22px 20px 22px;
  margin-bottom: 60px;
}
.announcement strong {
  color: var(--lux-gold);
}
.important-notes {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--lux-muted);
}

/* ===================================================
   CTA Section
   =================================================== */
.cta, .cta-content, .cta-kontakt {
  background: linear-gradient(90deg, #fff 60%, var(--lux-gold-light) 100%);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  align-items: center;
  padding: 38px 16px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-content h2 { color: var(--lux-primary); margin-bottom: 5px; }
.cta-primary { margin: 0 auto; }

/* ===================================================
   FAQ Styles
   =================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: var(--lux-shadow);
  padding: 22px 15px;
  color: var(--lux-text);
  border-left: 3px solid var(--lux-gold);
}
.faq-item h3 { color: var(--lux-secondary); font-size: 1rem; margin-bottom: 8px; }

/* ===================================================
   Tables: Kursplan, Öffnungszeiten
   =================================================== */
.schedule-table, .business-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 1.03rem;
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 1px 8px rgba(34,72,122,0.03);
  overflow: hidden;
}
.schedule-table th, .business-hours-table th {
  background: var(--lux-primary);
  color: #fff;
  padding: 13px 8px;
  text-align: left;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.schedule-table td, .business-hours-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #edeadc;
  color: var(--lux-text);
}
.schedule-table tr:last-child td, .business-hours-table tr:last-child td {
  border-bottom: none;
}
.legend {
  margin: 18px 0 0 0;
  color: var(--lux-muted);
  font-size: 0.99rem;
  display: flex; gap: 18px;
  flex-wrap: wrap;
}
.filters {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--lux-muted);
}

/* ===================================================
   Testimonial Cards
   =================================================== */
.testimonials h2 { color: var(--lux-gold); }
.testimonial-card {
  display: flex; align-items: center; gap: 20px; padding: 24px 18px;
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(34,72,122,0.10);
  font-size: 1.07rem;
  color: #191A1C;
  margin-bottom: 20px;
  min-width: 0;
  flex-wrap: wrap;
}
.testimonial-card p {
  color: var(--lux-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  margin: 0 8px 0 0;
}
.testimonial-card span {
  margin-left: 16px;
  color: var(--lux-gold);
  font-weight: 500;
  font-style: normal;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; margin-bottom: 16px; gap: 9px; }
  .testimonial-card span { margin-left: 0; }
}

/* ===================================================
   Footer Styles
   =================================================== */
footer {
  background: var(--lux-primary);
  color: #fff;
  padding: 46px 0 24px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-brand img {
  height: 42px;
  max-width: 72px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 0.99rem;
  transition: color 0.18s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--lux-gold);
}
.footer-contact {
  font-size: 0.98rem;
  color: #FFF;
  margin-top: 13px;
}
.footer-contact a { color: #FFF; text-decoration: underline; }
.footer-contact a:hover { color: var(--lux-gold); }
.footer-legal {
  margin-top: 20px;
  color: #E6CA97;
  font-size: 0.89rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand img {
    margin-bottom: 9px;
  }
}

/* ===================================================
   Cookie Consent Banner / Modal
   =================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0; z-index: 99999;
  background: #fff;
  border-top: 3px solid var(--lux-gold);
  box-shadow: 0 -4px 26px 0 rgba(34,72,122,0.08);
  padding: 22px 16px 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  font-size: 1rem;
  max-width: 100vw;
  min-width: 0;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  color: var(--lux-text);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-shrink: 0;
}
.cookie-banner button {
  background: var(--lux-surface);
  color: var(--lux-primary);
  border: 1px solid #E0DFD7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--lux-radius-sm);
  padding: 8px 18px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--lux-gold);
  color: #181A20;
  border: none;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #DFC58C;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: var(--lux-secondary);
  border-color: var(--lux-secondary);
}
.cookie-banner .reject {
  background: var(--lux-surface);
  color: var(--lux-secondary);
  border: 1px solid var(--lux-secondary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F7FAF7;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner .cookie-buttons {
    gap: 12px;
  }
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 999999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,34,64,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  width: 95vw;
  max-width: 455px;
  background: #fff;
  border-radius: var(--lux-radius);
  box-shadow: 0 16px 48px 0 rgba(34,72,122,0.13);
  margin: 0 0 32px 0;
  padding: 34px 24px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(80px);
  transition: transform 0.27s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open .cookie-modal { transform: translateY(0); }
.cookie-modal-close {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--lux-gold);
  cursor: pointer;
  z-index: 1;
}
.cookie-modal h2 {
  color: var(--lux-primary);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 11px 0;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--lux-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category label {
  font-size: 1.025rem;
  color: var(--lux-primary);
  font-weight: 600;
}
.cookie-modal .cookie-cat-desc {
  font-size: 0.94rem;
  margin-left: 30px;
  color: var(--lux-muted);
}
.cookie-modal .essential {
  opacity: 0.75;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  flex-direction: row;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  border-radius: var(--lux-radius-sm);
  padding: 9px 18px;
  border: none;
  background: var(--lux-gold);
  color: #181A20;
  transition: background 0.18s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions .cancel {
  background: #f6f6f6;
  color: var(--lux-muted);
  border: 1px solid #e9e9e9;
}
.cookie-modal .cookie-modal-actions .cancel:hover, .cookie-modal .cookie-modal-actions .cancel:focus {
  background: #ececec;
  color: var(--lux-secondary);
}
.cookie-modal .cookie-modal-actions .save {
  background: var(--lux-gold);
  color: #181A20;
  border: none;
}
.cookie-modal .cookie-modal-actions .save:hover, .cookie-modal .cookie-modal-actions .save:focus {
  background: #DFC58C;
}

@media (max-width: 520px) {
  .cookie-modal { padding: 18px 6px 14px 8px; }
  .cookie-modal-close { top: 5px; right: 10px; }
}

/* ===================================================
   Spacing Utility Classes
   =================================================== */
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* ===================================================
   Misc/Details
   =================================================== */
a, button, .cta-primary {
  transition: color 0.19s, background 0.18s, border-color 0.18s, box-shadow 0.22s;
}
::-webkit-scrollbar { width: 8px; background: #f3f3f3; }
::-webkit-scrollbar-thumb { background: var(--lux-gold-light); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--lux-gold); }
::selection { background: var(--lux-gold-light); color: #181A20; }

/* Responsive Table scroll */
@media (max-width: 700px) {
  .schedule-table, .business-hours-table { display: block; overflow-x: auto; min-width: 300px; }
}

/* Success message styling for thank-you */
.success-message {
  color: var(--lux-secondary);
  background: #F7FAF7;
  padding: 16px 18px;
  border-radius: var(--lux-radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(25,169,103,0.06);
  text-align: left;
  font-size: 1.05rem;
}

/***********************************************
 * Ensure all layout containers use FLEXBOX only *
 ***********************************************/
/*
  All layout patterns:
  .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item,
  .team-grid, .benefits-list, .feature-grid etc. use display:flex (see above).
  No grid/column-based layouts.
*/
