/* ==========================================
   LOCAL FONTS (DSGVO-KOMPATIBEL)
   ========================================== */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/playfair-display-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/playfair-display-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/playfair-display-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-700.ttf') format('truetype');
}

/* ==========================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Colors - Forest Pine, Sky Blue & Golden Terracotta (from Wide Landscape Photo) */
  --primary: #1C3026;            /* Rich Pine/Forest Green */
  --primary-rgb: 28, 48, 38;
  --primary-light: #2E4D3E;
  --primary-dark: #0E1B15;
  
  --accent: #DE8D37;             /* Sunset Golden Terracotta / Copper */
  --accent-rgb: 222, 141, 55;
  --accent-light: #E9BD8C;
  --accent-dark: #B06A23;
  
  --bg-light: #FDFBFA;           /* Snow Cream / Warm White */
  --bg-sage: #E8EEF2;            /* Soft Muted Sky Blue */
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-header-scrolled: rgba(253, 251, 250, 0.85);
  --border-color: rgba(28, 48, 38, 0.08);
  
  --text-dark: #1A221E;          /* Deep Pine Charcoal */
  --text-muted: #506158;         /* Pine Grey */
  --text-light: #FDFBFA;
  
  --white: #FFFFFF;
  --error: #C2594E;
  --success: #529E72;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(28, 48, 38, 0.04);
  --shadow-md: 0 12px 30px rgba(28, 48, 38, 0.06);
  --shadow-lg: 0 24px 50px rgba(28, 48, 38, 0.1);
  
  /* Fonts */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Fluid Sizing */
  --font-h1: clamp(2.2rem, 5.5vw, 3.6rem);
  --font-h2: clamp(1.7rem, 4vw, 2.4rem);
  --font-h3: clamp(1.3rem, 3vw, 1.7rem);
  --font-h4: clamp(1.1rem, 2.2vw, 1.3rem);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --header-height: 80px;
}

/* ==========================================
   2. DARK THEME
   ========================================== */
[data-theme="dark"] {
  --bg-light: #0A100D;           /* Deep Pine Obsidian */
  --bg-sage: #121E18;            /* Pine Green Slate */
  --bg-card: rgba(18, 30, 24, 0.75);
  --bg-header-scrolled: rgba(10, 16, 13, 0.85);
  --border-color: rgba(253, 251, 250, 0.08);

  --text-dark: #FDFBFA;          /* Cream */
  --text-muted: #93A89D;         /* Light Pine Green */
  --text-light: #0A100D;

  --white: #121E18;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.4);
  
  --accent-light: #422A1E;
  --accent-dark: #DE8D37;
  
  --primary-light: #44705A;
}

/* ==========================================
   3. RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--text-dark);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================
   4. LAYOUTS & CONTAINERS
   ========================================== */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

section {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: var(--font-h2);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto clamp(30px, 6vw, 50px) auto;
  font-size: 1.1rem;
}

/* ==========================================
   5. BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 8px;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF !important;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover:not(:disabled) {
  background-color: rgba(44, 74, 62, 0.05);
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

[data-theme="dark"] .btn-secondary:hover:not(:disabled) {
  background-color: rgba(250, 248, 245, 0.05);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.btn-accent:hover:not(:disabled) {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================
   6. HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--bg-header-scrolled);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--accent);
  border-radius: 50% 50% 50% 0; /* Teardrop shape */
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: bold;
}

.logo-icon span {
  transform: rotate(45deg);
}

.nav-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: clamp(15px, 2.5vw, 30px);
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a.btn {
  padding: 12px 30px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-links a.btn::after {
  display: none;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-light);
  font-weight: 600;
}

[data-theme="dark"] .nav-links a.active {
  color: var(--accent);
}

/* Theme Switcher */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  background-color: rgba(44, 74, 62, 0.05);
  border-color: var(--accent);
  transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle-btn {
  color: var(--accent);
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background-color: rgba(250, 248, 245, 0.05);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.theme-toggle-btn .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
  display: none;
}

/* Burger Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

[data-theme="dark"] .menu-toggle span {
  background-color: var(--text-dark);
}

.menu-toggle span:nth-child(1) { top: 0px; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -40px;
}
.menu-toggle.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Mobile Nav Open State */
/* Mobile Nav Optimization */
@media (max-width: 991px) {
  .menu-toggle {
    display: none !important;
  }
  
  .nav-actions-wrapper {
    gap: 12px !important;
  }

  .nav-links {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    border-left: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 12px !important;
    z-index: auto !important;
    transform: none !important;
    transition: none !important;
  }

  .nav-links li:not(.nav-action) {
    display: none !important;
  }
  
  .nav-action {
    width: auto !important;
    display: block !important;
  }
  
  .nav-action .btn {
    width: auto !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
#home {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 20px);
  background: linear-gradient(135deg, rgba(235, 241, 239, 0.9) 0%, rgba(250, 248, 245, 0.7) 100%);
  position: relative;
}

[data-theme="dark"] #home {
  background: linear-gradient(135deg, rgba(24, 33, 29, 0.9) 0%, rgba(16, 22, 19, 0.7) 100%);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

[data-theme="dark"] .hero-bg-img {
  opacity: 0.25;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  z-index: 2;
  position: relative;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .hero-badge {
  color: var(--text-dark);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: var(--font-h1);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-bg-wrapper {
    width: 100%;
    opacity: 0.45;
  }
  
  [data-theme="dark"] .hero-bg-wrapper {
    opacity: 0.15;
  }
  
  .hero-bg-img {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  }
}

/* ==========================================
   8. ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 7vw, 70px);
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  padding: 20px 0 20px 20px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 110px;
  height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23EBF1EF' opacity='0.7'%3E%3Cpath d='M30,90 C15,90 5,75 5,60 C5,40 25,10 60,10 C80,10 95,25 95,45 C95,65 75,90 30,90 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  z-index: 0;
}

[data-theme="dark"] .about-image-wrapper::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%2318211D' opacity='0.5'%3E%3Cpath d='M30,90 C15,90 5,75 5,60 C5,40 25,10 60,10 C80,10 95,25 95,45 C95,65 75,90 30,90 Z'/%3E%3C/svg%3E");
}

.about-image-border {
  position: absolute;
  top: 40px;
  left: 0px;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  border: 1px solid var(--accent);
  border-radius: 20px;
  z-index: 1;
}



.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.about-img:hover {
  filter: grayscale(0%);
}

.about-experience-card {
  position: absolute;
  bottom: 0px;
  right: -10px;
  background-color: var(--white);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--border-color);
}

.exp-badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exp-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  line-height: 1.3;
}

.exp-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

[data-theme="dark"] .about-experience-card {
  background-color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .exp-title {
  color: var(--text-dark);
}

[data-theme="dark"] .exp-subtitle {
  color: var(--text-muted);
}

.about-text h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.about-desc {
  margin-bottom: 16px;
}

.timeline-title-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 32px 0 20px 0;
}

.timeline-title-container h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.line-deco {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-color);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 4px;
  width: 1px;
  height: calc(100% - 15px);
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  left: -20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-light);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

[data-theme="dark"] .timeline-header {
  color: var(--text-dark);
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

[data-theme="dark"] .values-list li {
  color: var(--text-dark);
}

.values-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 0 15px 15px;
  }
}

@media (max-width: 575px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   9. SERVICES SECTION
   ========================================== */
#services {
  background-color: var(--bg-sage);
  transition: background-color 0.4s ease;
}

.services-container-wide {
  max-width: 1360px !important;
}

.services-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: visible;
}

.service-card {
  background-color: var(--primary);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  flex: 1 1 0px;
  min-width: 200px;
}

[data-theme="dark"] .service-card {
  background-color: var(--primary-dark);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.billing-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 15px;
  white-space: nowrap;
}

.billing-badge.billing-kasse {
  background-color: rgba(222, 141, 55, 0.15);
  color: var(--accent);
}

[data-theme="dark"] .billing-badge.billing-kasse {
  background-color: rgba(222, 141, 55, 0.22);
  color: var(--accent);
}

.billing-badge.billing-self {
  background-color: rgba(82, 158, 114, 0.15);
  color: var(--success);
}

[data-theme="dark"] .billing-badge.billing-self {
  background-color: rgba(82, 158, 114, 0.22);
  color: #72c292;
}

.service-card:hover .service-icon {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.05) rotate(360deg);
}

/* Selbstzahler Service Cards custom colors */
.service-card-self .service-icon {
  color: var(--success);
}

.service-card-self .service-link {
  color: var(--success);
}

.service-card-self:hover .service-icon {
  background-color: var(--success);
  color: var(--white);
  transform: scale(1.05) rotate(360deg);
}

[data-theme="dark"] .service-card-self .service-icon {
  color: #72c292;
}

[data-theme="dark"] .service-card-self .service-link {
  color: #72c292;
}

[data-theme="dark"] .service-card-self:hover .service-icon {
  background-color: #72c292;
  color: var(--primary-dark);
  transform: scale(1.05) rotate(360deg);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #FFFFFF !important;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #D6E0DB;
}

.service-link {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.service-link:hover {
  color: #FFFFFF;
}

.service-link svg {
  width: 12px;
  height: 12px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Media query for mobile swiping touch slider on screens < 1280px */
@media (max-width: 1279px) {
  .services-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    padding-top: 10px;
    margin-left: -5%;
    margin-right: -5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start;
  }
}

/* Schwerpunkte Tags & Marquee Lauftext */
.schwerpunkte-container {
  margin-top: 70px;
  text-align: center;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  margin-top: 10px;
  /* Premium fade-out effect at the edges */
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee-scroll 45s linear infinite; /* Calmer scrolling speed */
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.schwerpunkt-tag {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

[data-theme="dark"] .schwerpunkt-tag {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

.schwerpunkt-tag:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================
   10. OFFICE VIEW & OFFICE SLIDER
   ========================================== */
#office {
  background-color: var(--bg-sage);
}

.praxis-slider-container {
  width: 100%;
  overflow: hidden;
}

.praxis-slider {
  width: 100%;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.praxis-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.praxis-slide.active {
  opacity: 1;
  visibility: visible;
}

.praxis-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.praxis-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.praxis-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

[data-theme="dark"] .praxis-dot.active {
  background-color: var(--accent);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.slider-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  padding: 0;
}

[data-theme="dark"] .slider-btn {
  color: var(--text-dark);
}

.slider-btn:hover {
  background-color: rgba(28, 48, 38, 0.05);
}

[data-theme="dark"] .slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ==========================================
   13. CONTACT & INTERACTIVE BOOKING CALENDAR
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: stretch;
}

.contact-action-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 24px;
}

/* Left side Card */
.contact-info-card {
  background-color: var(--primary);
  padding: clamp(25px, 5vw, 40px);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D6E0DB;
}

.contact-info-card h3 {
  font-size: 1.45rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.contact-info-card p {
  color: #FDFBFA !important;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0;
}

.info-details li {
  display: flex;
  gap: 15px;
}

.info-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 2px;
  color: #FFFFFF;
}

.info-text p {
  font-size: 0.95rem;
  color: #B9C7C0;
}

.contact-info-card a {
  color: #FFFFFF;
}

.contact-info-card a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.crisis-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: rgba(222, 141, 55, 0.06);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 12px;
  margin-top: 0; /* Margin managed by flex column gap */
  text-align: left;
}

.crisis-content h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.crisis-content p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-dark);
}

[data-theme="dark"] .crisis-content p {
  color: var(--text-muted);
}

[data-theme="dark"] .contact-info-card {
  background-color: var(--primary-dark);
}

[data-theme="dark"] .booking-wizard-card {
  background-color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Right side Wizard Card */
.booking-wizard-card {
  background-color: var(--white);
  padding: clamp(25px, 5vw, 40px);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.booking-steps-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.booking-step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition-smooth);
}

.booking-step-indicator::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: var(--border-color);
  right: -12px;
  top: 50%;
}

.booking-step-indicator:last-child::before {
  display: none;
}

.booking-step-indicator.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.booking-step-indicator.completed {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.booking-section {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
  flex-grow: 1;
}

.booking-section.active {
  display: flex;
  flex-direction: column;
}

.booking-section h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  text-align: center;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 25px;
}

/* Step 1: Format */
.format-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.format-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.format-btn:hover {
  background-color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.format-btn.selected {
  background-color: var(--bg-sage);
  border-color: var(--primary);
}

.format-icon {
  font-size: 1.5rem;
}

/* Step 2: Calendar & Slots */
.calendar-wrapper {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px;
  background-color: var(--bg-light);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-header h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0;
}

.calendar-day {
  font-size: 0.85rem;
  font-weight: 600;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.calendar-day:hover:not(.disabled):not(.active) {
  background-color: rgba(44, 74, 62, 0.05);
}

.calendar-day.active {
  background-color: var(--primary);
  color: #FFFFFF;
}

.calendar-day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  font-weight: 400;
}

.time-slots-wrapper {
  margin-top: 20px;
}

.time-slots-wrapper h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 10px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.slot-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  color: var(--text-dark);
}

.slot-btn:hover:not(.disabled):not(.selected) {
  background-color: var(--white);
  border-color: var(--accent);
}

.slot-btn.selected {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.slot-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Step 3: Form inputs */
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.checkbox-group {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500 !important;
  color: var(--text-dark);
}

.checkbox-label input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

[data-theme="dark"] .checkbox-text {
  color: var(--text-muted);
}

.checkbox-text a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: var(--accent);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

[data-theme="dark"] .form-group label {
  color: var(--text-dark);
}

.form-input {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-light);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(44, 74, 62, 0.08);
}

.form-group.invalid .form-input {
  border-color: var(--error);
  background-color: rgba(194, 89, 78, 0.02);
}

.error-msg {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Success Card */
.booking-success-card {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 50px;
  height: 50px;
  background-color: var(--success);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px auto;
}

.booking-summary-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  text-align: left;
  border: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 700;
  color: var(--text-muted);
}

.summary-value {
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================
   14. FOOTER
   ========================================== */
footer {
  background-color: var(--primary-dark);
  color: #D6E0DB;
  padding: 60px 0 20px 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(250, 248, 245, 0.04);
}

footer h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: #FFFFFF;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  background-color: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #BAC7C0;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-info p {
  color: #BAC7C0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
  color: #93A69C;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #93A69C;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================
   15. TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
  width: 90%;
}

.toast {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s ease;
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-error {
  border-left: 4px solid var(--error);
}

.toast-text {
  flex-grow: 1;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   16. KEYFRAMES & GLOBAL ANIMATIONS
   ========================================== */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(82, 158, 114, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(82, 158, 114, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(82, 158, 114, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* IntersectionObserver Fade Ins */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-in > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-in.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-in.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.5s; }

/* ==========================================
   17. MOBILE-FIRST LEGIBILITY OVERRIDES
   ========================================== */
@media (max-width: 991px) {
  /* Solid blurred header on mobile to prevent overlay on green forest bg */
  header {
    background-color: var(--bg-header-scrolled) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    padding: 12px 0 !important;
    box-shadow: var(--shadow-sm) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  /* Reduce opacity of hero bg path image to make black/green text perfectly readable */
  .hero-bg-wrapper {
    opacity: 0.12 !important;
  }
  
  [data-theme="dark"] .hero-bg-wrapper {
    opacity: 0.06 !important;
  }
}

@media (max-width: 480px) {
  /* Give calendar grid and wizard forms maximum space */
  .booking-wizard-card {
    padding: 15px 12px !important;
  }
  
  .calendar-wrapper {
    padding: 10px 5px !important;
  }

  /* Make sure titles fit on small screens */
  .hero-text h1 {
    font-size: 2.2rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }
}

/* ==========================================
   14. SERVICE CARD ACTIONS & INFO MODALS
   ========================================== */
.service-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  gap: 10px;
  width: 100%;
}

.btn-info-modal {
  background: none;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  transition: var(--transition-smooth);
}

.btn-info-modal:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

[data-theme="dark"] .btn-info-modal {
  color: var(--text-muted);
}

[data-theme="dark"] .btn-info-modal:hover {
  color: var(--accent);
}

/* Info Modal Overlay and Content */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 16, 13, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background-color: var(--bg-light);
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow-y: auto;
  padding: 40px;
  z-index: 2001;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scroll-behavior: smooth;
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background-color: rgba(28, 48, 38, 0.05);
  color: var(--primary);
}

[data-theme="dark"] .modal-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.modal-body h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-body h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.45;
}

.modal-body h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.modal-body p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.modal-body ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 24px;
}

.modal-body li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}

.modal-body li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -2px;
}

[data-theme="dark"] .modal-body h2,
[data-theme="dark"] .modal-body h4 {
  color: var(--text-dark);
}

[data-theme="dark"] .modal-body h3 {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  
  .modal-body h2 {
    font-size: 1.5rem;
    padding-right: 30px;
  }
}
