/* ===== 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, 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;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #232320;
  background: #fff;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFD100;
  outline-offset: 2px;
}

/* ====== VARIABLES (with fallbacks for wide support) ====== */
:root {
  --brand-primary: #005D4C;
  --brand-secondary: #FFD100;
  --brand-accent: #ffffff;
  --brand-bg: #fafbfc;
  --premium-gold: #C2A74E;
  --premium-dark: #232320;
  --premium-light: #F3F1EB;
  --border-radius: 16px;
  --shadow: 0 4px 24px 0 rgba(0,0,0,0.06);
}

/* ====== FONT FAMILY IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ====== UNIVERSAL & BASIC STRUCTURE ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main {
  flex: 1 1 0; 
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  max-width: 740px;
  width: 100%;
  margin: 0 auto 28px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: var(--brand-bg);
  border-radius: var(--border-radius);
  padding: 24px 20px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--premium-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.375rem; /* 38px */
  line-height: 1.15;
  margin-top: 0;
}
h2 {
  font-size: 1.875rem; /* 30px */
  margin-top: 0;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-top: 0;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #232320;
}
.subheadline {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 18px;
}

strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* ===== LUXURY PREMIUM BRANDING ACCENTS ===== */
.premium-gold {
  color: var(--premium-gold) !important;
}
.premium-bg {
  background: var(--premium-light) !important;
}

/* ====== HEADER / NAVIGATION ====== */
header {
  background: var(--premium-light);
  border-bottom: 1px solid #eceae2;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 202;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  position: relative;
  color: var(--premium-dark);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}

.cta-btn.primary {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 10px 28px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .03em;
  box-shadow: 0 3px 16px 0 rgba(0,30,40,0.07);
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
  margin-left: 16px;
}
.cta-btn.primary:after {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  top: 18%;
  width: 80%;
  height: 66%;
  pointer-events: none;
  border-radius: 20px;
  background: linear-gradient(93deg,rgba(255,209,0,0.14) 8%,rgba(255,255,255,0.04) 90%);
  z-index: 1;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--premium-gold);
  color: var(--premium-dark);
  box-shadow: 0 6px 22px 0 rgba(194,167,78,0.16);
}

/* Small CTA */
.cta-btn {
  background: var(--premium-gold);
  color: var(--premium-dark);
  padding: 10px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.18s;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(194,167,78,0.09);
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  padding: 8px 18px 8px 8px;
  cursor: pointer;
  display: none;
  align-items: center;
  border-radius: 10px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--premium-gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,35,32,0.97);
  color: var(--brand-accent);
  z-index: 303;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.8,.1,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2.5rem;
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  z-index: 1;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--premium-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 98px 0 0 34px;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .045em;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  display: inline-block;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--premium-dark);
  outline: none;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn.primary {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  header .container {
    flex-direction: row;
    height: 64px;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .logo img {
    height: 36px;
  }
}

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(110deg, #fff 0%, #F3F1EB 54%, #fff 100%);
  padding: 60px 0 48px 0;
  margin-bottom: 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  color: var(--premium-dark);
  font-weight: 500;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* ====== FEATURES, VALUE GRIDS, ADVANTAGES ====== */
.features, .values, .trust, .services, .locations, .updates, .about {
  background: #fff;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 0 0;
  justify-content: flex-start;
}
.feature-item {
  background: var(--premium-light);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(34, 34, 34, 0.07);
  padding: 32px 28px 30px 28px;
  min-width: 240px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s, transform .18s, border-color .16s;
  border: 1px solid #eceae2;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
}
.feature-item h3 {
  font-size: 1.075rem;
  margin-bottom: 8px;
  color: var(--brand-primary);
  letter-spacing: .015em;
}
.feature-item p {
  font-size: 1rem;
  color: var(--premium-dark);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 18px 0 rgba(194,167,78,0.12), 0 1.5px 10px 0 rgba(0,93,76,0.03);
  transform: translateY(-3px) scale(1.016);
  border-color: var(--brand-secondary);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

/* ====== CARD LAYOUTS ======*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--premium-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  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;
}

@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
/* ====== TESTIMONIALS / QUOTES ====== */
.testimonials {
  background: var(--premium-light);
  padding: 48px 0 32px 0;
}
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid #eceae2;
  border-left: 5px solid var(--premium-gold);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(34, 34, 34, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 26px;
  margin-bottom: 24px;
  max-width: 650px;
  color: #232320;
}
.testimonial-card p {
  color: #232320;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-top: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: .005em;
}
@media (max-width: 620px) {
  .testimonial-card {
    padding: 17px 14px 17px 14px;
    border-radius: 14px;
  }
}

/* ====== ANNOUNCEMENTS, TABLES, LOGS (Kurse & Zeitplan) ====== */
.class-table, .announcement-list, .change-log {
  background: var(--premium-light);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 4px 0 rgba(35,35,32,0.04);
  padding: 22px 18px 18px 18px;
  margin: 12px 0 30px 0;
  border: 1px solid #eceae2;
}
.announcement-list li, .change-log li, .benefit-list li, .faq-preview ul li, .faq-section ul li, .directions ul li {
  padding-left: 2px;
  margin-bottom: 10px;
  color: #2e2e25;
  line-height: 1.6;
}
.class-table ul, .change-log ul, .announcement-list {
  margin: 0;
  padding: 0;
}
.class-table h3, .change-log h3 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--brand-primary);
  font-weight: 600;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-radius: var(--border-radius);
  padding: 40px 12px 36px 12px;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
  text-align: left;
}
.cta-section h2 {
  color: var(--brand-secondary);
}
.cta-section p {
  color: var(--brand-accent);
  margin-bottom: 18px;
}
.cta-section .cta-btn {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-weight: 700;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: var(--premium-gold);
  color: var(--premium-dark);
}

@media (max-width: 850px) {
  .cta-section {
    padding: 26px 6px 20px 6px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--premium-light);
  border-top: 1px solid #eceae2;
  margin-top: 80px;
  width: 100%;
  padding: 34px 0 20px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.footer-nav a {
  color: var(--brand-primary);
  padding: 2px 2px;
  border-radius: 6px;
  transition: background .13s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-secondary);
  color: var(--premium-dark);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #232320;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 8px;
  }
}

/* ===== BENEFIT & FAQ LISTS ===== */
.benefit-list {
  margin: 18px 0 10px 0;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--premium-dark);
  font-weight: 500;
}
.benefit-list img {
  width: 23px;
  height: 23px;
}
.faq-preview h3, .faq-section h2 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: var(--brand-primary);
}

/* DIRECTIONS LIST */
.directions h2 {
  font-size: 1.1rem;
  color: var(--brand-primary);
  margin-bottom:7px;
}

/* MAP EMBED/COMPANY ADDRESS */
.map-embed .text-section {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

/* LOCATION LISTS */
.location-list ul, .location-details ul {
  margin-bottom: 0;
}
.location-list li, .location-details li {
  margin-bottom: 8px;
  color: #2e2e25;
}

/* LEGAL PAGES */
.legal .content-wrapper {
  margin-bottom: 0;
}
.legal h1, .legal h2 {
  color: var(--brand-primary);
}
.legal ul {
  margin-top: 10px;
}
.legal li {
  margin-bottom: 8px;
}

/* THANK YOU SECTION */
.thank-you-section {
  background: var(--brand-bg);
  margin-bottom: 0;
  min-height: 300px;
}
.thank-you-section .content-wrapper {
  text-align: center;
}

/* QUICK-LINKS NAV */
.quick-links {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  font-size: 1.08rem;
}
.quick-links a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  border-radius: 3px;
  transition: background .12s, color .14s;
  padding: 1px 4px;
}
.quick-links a:hover, .quick-links a:focus {
  color: var(--premium-dark);
  background: var(--premium-gold);
}

/* ===== COOKIE CONSENT BANNER AND MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 502;
  background: #fffbed;
  color: var(--premium-dark);
  border-top: 3px solid var(--premium-gold);
  box-shadow: 0 0 24px 0 rgba(0,0,0,0.08);
  padding: 22px 14px 20px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  min-height: 40px;
  animation: cookieFadeIn 0.38s cubic-bezier(.78,.13,.22,1) 1;
}
@keyframes cookieFadeIn {
  0% { transform: translateY(80px); opacity:0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 220px;
  margin-right: 18px;
  min-width: 180px;
  color: var(--premium-dark);
}
.cookie-banner .cookie-actions {
  flex: 1 1 170px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  min-width: 170px;
}
.cookie-btn, .cookie-action-btn {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 20px;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background 0.19s, color 0.16s;
  box-shadow: 0 2px 9px 0 rgba(0,93,76,.08);
}
.cookie-btn[aria-pressed="true"] {
  background: var(--premium-gold);
  color: var(--premium-dark);
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--premium-gold);
  color: var(--premium-dark);
}
.cookie-btn.reject {
  background: #ebe7d4;
  color: var(--premium-dark);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e4d79d;
}
.cookie-btn.settings {
  background: none;
  color: var(--brand-primary);
  text-decoration: underline;
  box-shadow: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: var(--premium-dark);
  background: none;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 601;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(35,35,32,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbef;
  border-radius: 22px;
  box-shadow: 0 16px 48px 0 rgba(35,35,32,0.25);
  padding: 36px 28px 24px 28px;
  min-width: 320px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: cookieModalIn .33s cubic-bezier(.7,.05,.15,1);
}
@keyframes cookieModalIn {
  from { transform: translateY(62px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--brand-primary);
  margin-bottom: 3px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.03rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  font-weight: 500;
  color: var(--premium-dark);
  margin-bottom: 5px;
}
.cookie-modal input[type=checkbox],
.cookie-modal input[type=radio] {
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  position: absolute;
  right: 24px;
  top: 18px;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--premium-gold);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-actions .cookie-action-btn {
  padding: 8px 18px;
}
.cookie-modal .cookie-info {
  font-size: .95rem;
  color: #615c3b;
  background: #f9f7ef;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
@media (max-width: 510px) {
  .cookie-modal {
    padding: 22px 8px 16px 8px;
    min-width: 0;
    max-width: 95vw;
  }
}

/* ====== RESPONSIVE - MOBILE FIRST ====== */
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding: 14px 5px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .section, section {
    padding: 26px 5px;
    margin-bottom: 40px;
  }
  .cta-section {
    padding: 24px 4px 22px 4px;
    margin-bottom: 30px;
  }
}

@media (max-width: 510px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .footer-contact, .footer-brand, .footer-nav {
    font-size: 0.93rem;
  }
  .testimonial-card {
    padding: 12px 5px 12px 10px;
    margin-bottom: 14px;
  }
}

/* ====== TRANSITIONS & MICRO-INTERACTIONS ====== */
sum, .card, .feature-item, .cta-btn, .cta-btn.primary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.14s, box-shadow .2s, transform .18s;
}
.cta-btn:active, .cta-btn.primary:active {
  transform: scale(0.98);
}

/* ====== UTILITIES ====== */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { justify-content: center; align-items: center; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }

/* ======= FORM CONTROLS (for contact/faq if any) ======= */
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.2px solid #d6d3c6;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 13px;
  outline: none;
  transition: border .19s, box-shadow .16s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--premium-gold);
  box-shadow: 0 1.5px 8px 0 rgba(255, 209, 0, .08);
}

button, [type=submit] {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: var(--brand-primary);
  color: var(--brand-accent);
  cursor: pointer;
  border-radius: 14px;
  border: none;
  padding: 8px 20px;
  transition: background .18s, color .13s;
}
button:hover, button:focus, [type=submit]:hover, [type=submit]:focus {
  background: var(--premium-gold);
  color: var(--brand-primary);
}

/* ===== Z-INDEX for Overlays ===== */
header { z-index: 202; }
.mobile-menu { z-index: 303; }
.cookie-banner { z-index: 502; }
.cookie-modal-overlay { z-index: 601; }

/* ====== END OF STYLE.CSS ====== */
