/* ========================================================================
   CSS RESET & BASE STYLES – Minimalist, Modern by BücherOase
   ======================================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #FFFFFF;
  font-family: 'Arial', Arial, sans-serif;
  color: #25315A;
  min-height: 100vh;
  font-size: 16px;
  /* Use max 12px on mobile for very small screens (see media queries) */
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: #25315A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B58F60;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
hr {
  border: none;
  border-top: 1px solid #F4E9DA;
  margin: 32px 0;
}

/* ========================================================================
   BRAND COLORS, FONTS, AND CUSTOM PROPERTIES
   ======================================================================== */
:root {
  --color-primary: #25315A;
  --color-secondary: #F4E9DA;
  --color-accent: #B58F60;
  --color-accent2: #9C6B29;
  --color-white: #FFFFFF;
  --color-dark: #181C27;
  --color-bg: #FFFFFF;
  --font-display: 'Merriweather', serif;
  --font-body: 'Arial', Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 8px rgba(37,49,90,0.04), 0 1.5px 6px rgba(37,49,90,0.06);
  --shadow-elevated: 0 3px 18px rgba(37,49,90,0.10);
  --shadow-card: 0 1.5px 6px rgba(37,49,90,0.08);
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--color-primary);
}
@media (min-width: 700px) {
  h1, .h1 { font-size: 2.8rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
@media (min-width: 700px) {
  h2, .h2 { font-size: 2rem; }
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-accent2);
}
@media (min-width: 700px) {
  h3, .h3 { font-size: 1.25rem; }
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
}
p, .subheadline, .text-section {
  font-family: var(--font-body);
  color: var(--color-dark);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.subheadline {
  color: var(--color-accent2);
  font-size: 1.08rem;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent2);
}
.text-section {
  max-width: 720px;
  margin-bottom: 18px;
}

/* ========================================================================
   CONTAINER & SECTION LAYOUTS (Flex and Spacing)
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Children manage own gap */
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 700px) {
  .content-wrapper {
    gap: 24px;
    flex-direction: row;
    align-items: flex-start;
  }
}
.section:last-child, .container:last-child, main > section:last-child {
  margin-bottom: 0;
}

/* ========================================================================
   HEADER & NAVIGATION
   ======================================================================== */
header {
  width: 100%;
  background: var(--color-bg);
  box-shadow: none;
  border-bottom: 1px solid #F4E9DA;
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-body);
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.18s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
}

/* CTA BUTTON STYLES */
.cta-button,
button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  background: var(--color-accent2);
  color: var(--color-white);
  cursor: pointer;
  margin: 0;
  margin-left: 12px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
}
.cta-button.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-1px) scale(1.022);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
  margin-bottom: 60px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-height: 180px;
  display: flex;
  align-items: center;
}
.hero .container {
  padding-top: 36px;
  padding-bottom: 36px;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
  width: 100%;
}

/* ========================================================================
   FEATURE GRID (Flex)
   ======================================================================== */
ul.feature-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.feature-grid li {
  flex: 1 1 190px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
ul.feature-grid li:hover,
ul.feature-grid li:focus-within {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px) scale(1.011);
}
ul.feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
  filter: grayscale(30%) contrast(1);
}
@media (min-width: 700px) {
  ul.feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }
  ul.feature-grid li {
    width: calc(33.333% - 16px);
    min-width: 230px;
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  ul.feature-grid li {
    width: calc(20% - 12px);
  }
}
/* ========================================================================
   CARD-CONTAINER & CONTENT-GRID (Flex mandatory)
   ======================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  max-width: 380px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  position: relative;
}
.testimonial-card p {
  font-family: var(--font-display);
  color: #25315A;
  font-size: 1.04rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.testimonial-meta {
  color: var(--color-accent2);
  font-size: 0.99rem;
}
@media (min-width:700px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: row;
    gap: 28px;
  }
}

/* Guarantee contrast for review/testimonial */
.testimonials, .testimonial-card, .testimonial-meta, .testimonial-card p {
  background: var(--color-white) !important;
  color: #181C27 !important;
}


/* ========================================================================
   RECOMMENDATION & SERVICE LIST STYLES
   ======================================================================== */
ul.recommendation-list, ul.recommendation-list li,
ul.service-list, ul.service-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
ul.recommendation-list li {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
ul.recommendation-list h3 {
  font-size: 1.17rem;
  margin-bottom: 0.4em;
  color: var(--color-primary);
}
ul.recommendation-list span {
  font-size: 0.96rem;
  color: var(--color-accent2);
}
/* Service list on dienstleistungen.html */
.service-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.service-list li {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.service-list h3 { color: var(--color-primary); }
.service-price {
  color: var(--color-accent2);
  font-weight: 600;
}

/* ========================================================================
   TEXT-IMAGE SECTION / ALIGNMENTS
   ======================================================================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Map styles */
.map {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px 0 0 0;
  margin-bottom: 20px;
}
.map img {
  width: 68px;
  height: 68px;
}

/* ========================================================================
   FOOTER STYLES
   ======================================================================== */
footer {
  background: var(--color-secondary);
  border-top: 1px solid #F4E9DA;
  padding: 28px 0 16px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 0.99rem;
  color: var(--color-primary);
  opacity: 0.82;
  padding: 4px 0;
  border-bottom: 1.2px solid transparent;
  transition: color 0.13s, border-color 0.16s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent2);
  opacity: 1;
  border-bottom: 1.2px solid var(--color-accent2);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--color-primary);
  opacity: 0.76;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  display: inline-block;
}

/* ========================================================================
   BURGER MENU: MOBILE NAVIGATION
   ======================================================================== */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1101;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.12s, transform 0.09s;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-elevated);
  transform: scale(1.09);
}
@media (max-width: 950px) {
  .main-nav {
    display: none !important;
  }
  .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(244,233,218,0.98);
  z-index: 1150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.48,0.01,0.47,0.99);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  margin: 24px 26px 8px 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent2);
  transform: scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 2px;
  padding: 1.7em 34px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--color-primary);
  padding: 0.8em 0;
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
  margin-bottom: 10px;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ========================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1300;
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 -2px 12px rgba(30,32,34,0.06);
  border-top: 1px solid #F4E9DA;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 22px 20px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.44s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  color: var(--color-dark);
  font-size: 1rem;
  flex: 1 1 auto;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 7px;
  background: var(--color-accent2);
  color: var(--color-white);
  cursor: pointer;
  border: none;
  margin: 0;
  transition: background 0.15s, color 0.11s, box-shadow 0.16s;
  box-shadow: var(--shadow);
}
.cookie-banner__btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-accent2);
}
.cookie-banner__btn.reject {
  background: var(--color-white);
  color: var(--color-accent2);
  border: 1px solid var(--color-accent2);
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.cookie-banner__btn.settings:hover,
.cookie-banner__btn.settings:focus {
  background: var(--color-accent2);
  color: var(--color-white);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 18px 10px 16px 10px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,49,90,0.44);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.visible {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 34px 24px 25px 24px;
  box-shadow: var(--shadow-elevated);
  max-width: 98vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn 0.20s cubic-bezier(.4,0,.2,1) 1;
  position: relative;
}
@keyframes popIn {
  0% { transform: scale(0.98) translateY(22px); opacity: 0; } 
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--color-accent2);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: var(--color-primary);
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.26rem;
  margin-bottom: 0.2em;
}
.cookie-modal__desc {
  color: var(--color-dark);
  font-size: 1.02rem;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal__cat {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
}
.cookie-modal__cat input[type='checkbox'] {
  accent-color: var(--color-accent2);
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}
.cookie-modal__cat label {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal__cat .always {
  color: var(--color-accent2);
  font-size: 0.97rem;
  font-style: italic;
  padding-left: 8px;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal__actions button {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 7px;
  padding: 9px 22px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: var(--color-accent2);
  color: var(--color-white);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal__actions button:hover,
.cookie-modal__actions button:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ========================================================================
   RESPONSIVE DESIGN / MOBILE-FIRST
   ======================================================================== */
@media (max-width: 980px) {
  .container {
    max-width: 94vw;
  }
  .footer-brand {
    font-size: 0.96rem;
  }
}
@media (max-width: 700px) {
  html, body {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 1.45rem;
  }
  h2,.h2 {
    font-size: 1.1rem;
  }
  .section, section {
    padding: 26px 8px 22px 8px;
    margin-bottom: 32px;
  }
  .footer-brand {
    font-size: 0.91rem;
    gap: 4px;
  }
  .hero .container, .about-highlight .container, .features .container {
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media (max-width: 430px) {
  html, body { font-size: 14px; }
  .cta-button, .cta-button.primary { padding: 9px 12px; font-size: 0.95rem; }
}

/* Utility: Hide visually */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; border: 0; padding: 0;
  white-space: nowrap; clip-path: inset(100%);
  clip: rect(0 0 0 0); overflow: hidden;
}

/* ========================================================================
   FORM ELEMENTS & BUTTONS (For future use)
   ======================================================================== */
input[type=email],
input[type=text],
textarea {
  border: 1.2px solid #DFE6F3;
  border-radius: 6px;
  background: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 7px 13px;
  margin-bottom: 17px;
  width: 100%;
  color: var(--color-primary);
  transition: border 0.14s;
}
input[type=email]:focus,
input[type=text]:focus,
textarea:focus {
  border-color: var(--color-accent2);
  outline: none;
}
button,
input[type=submit] {
  font-family: var(--font-body);
  background: var(--color-accent2);
  color: var(--color-white);
  padding: 9px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
}
button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ========================================================================
   MISCELLANEOUS & MICRO-INTERACTIONS
   ======================================================================== */
section, .section {
  transition: box-shadow 0.22s;
}
.card, .testimonial-card, .feature-grid li, .recommendation-list li, .service-list li {
  transition: box-shadow 0.2s, transform 0.11s;
}
.card:hover, .feature-grid li:hover, .recommendation-list li:hover, .testimonial-card:hover, .service-list li:hover {
  box-shadow: var(--shadow-elevated);
  transform: scale(1.015);
}
.cta-button:focus, .cta-button.primary:focus {
  outline: 2.5px dashed var(--color-accent2);
  outline-offset: 2px;
}

/* Lists within text sections */
.text-section ul {
  margin-left: 1.7em;
  margin-bottom: 14px;
}
.text-section ul li {
  list-style: disc;
  margin-bottom: 4px;
}

/* Legal / Static pages */
.legal {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 26px 12px 14px 12px;
  box-shadow: var(--shadow-card);
}
.legal h1 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.legal h2 {
  font-size: 1.09rem;
  margin-top: 1.2em;
  margin-bottom: 8px;
}

/* ========================================================================
   FOCUS ACCESSIBILITY
   ======================================================================== */
a:focus, button:focus, input:focus {
  outline: 2px dashed var(--color-accent2);
  outline-offset: 2px;
}

/* ========================================================================
   CRITICAL: ENFORCE FLEXBOX - NO GRID
   ======================================================================== */
/* All layout containers above use ONLY display: flex; No grid properties present. */

/* End of style.css */