/* ==========================================================================
  Lumenpunkt Bildung - Elegant Classic CSS
  Responsive, elegant, flexbox-only layout (NO CSS Grid, NO Columns)
  Brand: Modern, timeless, harmonious, muted greens and golds
========================================================================== */
/* ------------- CSS RESET & NORMALIZATION ------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  background: #FAFAF8;
  color: #204C39;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #204C39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B705;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.6em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: bold;
}
/* ------------- CONTAINER LAYOUTS (FLEXBOX ONLY) ------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,76,57,0.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(32,76,57,0.08);
  padding: 28px 22px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(32,76,57,0.14);
  transform: translateY(-3px);
}
.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;
}
/* Should be column on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #E6F5DA;
  border-left: 6px solid #204C39;
  padding: 20px 32px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(32,76,57,0.05);
  color: #204C39;
}
.testimonial-card p {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.125rem;
  color: #204C39;
  margin-bottom: 6px;
}
.testimonial-card span,
.testimonial-card strong {
  color: #204C39;
}

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

/* ------------- TYPOGRAPHY - Elegant Classic Hierarchy ------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #204C39;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: 0.01em;
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-size: 2.1rem;
  margin-top: 1em;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}
h4 {
  font-size: 1.1rem;
}

p, ul, ol, li {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #204C39;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

small {
  font-size: 0.88rem;
  color: #666;
}

label {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ------------- BUTTONS ------------- */
.button-primary, .button-secondary {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  padding: 0.8em 2em;
  background-color: #204C39;
  color: #fff;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(32,76,57,0.12);
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-right: 10px;
  margin-bottom: 12px;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: #255E47;
  color: #F2B705;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(32,76,57,0.16);
}
.button-secondary {
  background-color: #F2B705;
  color: #204C39;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E6F5DA;
  color: #204C39;
  box-shadow: 0 2px 14px rgba(242,183,5,0.16);
}
a.button-primary, a.button-secondary {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

/* ------------- HEADER & NAVIGATION ------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E6F5DA;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 1px 8px rgba(32,76,57, 0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}
header img {
  max-height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.08rem;
  color: #204C39;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E6F5DA;
  color: #255E47;
}
header .button-primary {
  margin: 0 0 0 24px;
  font-size: 1.05rem;
  padding: 0.7em 1.3em;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  header .container {
    gap: 6px;
  }
  .main-nav {
    gap: 6px;
  }
  header .button-primary {
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  header .button-primary {
    display: none;
  }
  header .container {
    padding-right: 0;
  }
}

/* ---- Mobile menu hamburger ---- */
.mobile-menu-toggle {
  display: none;
  background: #204C39;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 5px 12px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1101;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #255E47;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- Mobile menu overlay ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,76,57,0.97);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.65,0.05,0.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.6rem;
  border: none;
  align-self: flex-end;
  margin: 28px 24px 0 0;
  cursor: pointer;
  z-index: 1119;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F2B705;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 42px 0 0 42px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s, background 0.15s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2B705;
  background: rgba(239,222,143,0.09);
}
@media (max-width: 470px) {
  .mobile-nav {
    margin: 34px 0 0 20px;
    gap: 18px;
  }
}

/* ------------- HERO, FEATURES, CARDS, SERVICES ------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,76,57,0.07);
}

section .content-wrapper > h1, section .content-wrapper > h2 {
  margin-bottom: 8px;
}
ul {
  list-style-type: disc;
  margin-left: 1.6em;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  margin-bottom: 8px;
  color: #204C39;
  padding-left: 2px;
}
ul li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  filter: drop-shadow(0 2px 2px rgba(32,76,57,0.13));
}
strong {
  color: #255E47;
}

/* Card-like list entries for course lists, etc. */
ul li > h3 {
  margin-bottom: 4px;
}
ul li > strong {
  font-size: 1.1rem;
  margin-top: 2px;
  display: block;
  color: #204C39;
}

/* Steps, Numbers, etc */
ol {
  margin-left: 1.6em;
  margin-bottom: 1em;
}
ol li {
  padding-left: 2px;
  font-size: 1.01rem;
  color: #204C39;
}
/* ------------- FOOTER ------------- */
footer {
  background: #204C39;
  color: #fff;
  padding: 40px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 0;
  padding-bottom: 0;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  opacity: 0.85;
  padding: 2px 4px;
  border-radius: 5px;
  transition: background 0.14s, color 0.14s, opacity 0.14s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  opacity: 1;
  color: #F2B705;
  background: rgba(242,183,5,0.09);
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 320px;
}
.brand-info img {
  max-width: 56px;
  margin-bottom: 7px;
}
footer .footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.footer-social a img {
  width: 30px; height: 30px;
  display: block;
  transition: filter 0.13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.18) drop-shadow(0 0 6px #F2B705);
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  footer {
    padding: 26px 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------- RESPONSIVE SPACING, LAYOUTS ------------- */
@media (max-width: 820px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 34px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 18px 2px;
    margin-bottom: 24px;
  }
}

/* ------------- MICRO-INTERACTIONS, ANIMATION ------------- */
.button-primary, .button-secondary, .main-nav a, .footer-menu a, a {
  transition-property: box-shadow, background, color, transform, opacity, filter;
  transition-duration: .16s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}
section, .card, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.39,.58,.57,1);
}
/* Show subtle lift on hover for cards */
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32,76,57,0.13);
}

/* ------------- COOKIE CONSENT BANNER & MODAL ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #204C39;
  box-shadow: 0 -2px 16px rgba(32,76,57,0.10);
  border-top: 3px solid #255E47;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 28px;
  z-index: 1201;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.04rem;
  opacity: 1;
  transition: transform .32s cubic-bezier(0.65,0.05,0.36,1), opacity .19s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .button-primary, .cookie-banner .button-secondary, .cookie-banner .cookie-settings-btn {
  font-size: 1rem;
  padding: 0.5em 1.3em;
  border-radius: 20px;
  background: #204C39;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-banner .button-primary:hover, .cookie-banner .button-secondary:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #255E47;
  color: #F2B705;
}
.cookie-banner .button-secondary {
  background: #F2B705;
  color: #204C39;
}
.cookie-banner .button-secondary:hover {
  background: #fff;
  color: #204C39;
  border: 1px solid #F2B705;
}
.cookie-banner .cookie-settings-btn {
  background: #E6F5DA;
  color: #204C39;
  border: 1px solid #E6F5DA;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 8px;
    font-size: .98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* ------------ Cookie Modal ----------------------*/
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,76,57,0.75);
  z-index: 1212;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #204C39;
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(32,76,57,.23);
  padding: 34px 28px 28px 28px;
  min-width: 310px;
  min-height: 240px;
  max-width: 480px;
  width: 95vw;
  font-family: 'Montserrat', 'Georgia', serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.37rem;
  margin-bottom: 8px;
}
.cookie-modal-content label {
  font-weight: 600;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #204C39;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 13px; right: 13px;
  background: transparent;
  border: none;
  font-size: 1.98rem;
  color: #204C39;
  cursor: pointer;
  padding: 0;
  transition: color 0.13s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  color: #F2B705;
}
/* ------------ MISCELLANEOUS COMPONENTS ------------- */
.steps ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 0 1em 0;
  padding: 0;
}
@media (max-width: 600px) {
  .steps ul {
    flex-direction: column;
    gap: 14px;
  }
}

.brand-info {
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* ------------- UTILITIES ------------- */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }

/* ------------- PRINT ------------- */
@media print {
  footer, header, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body, section, .container { background: #fff !important; color: #111 !important; }
}

/* ------------- ACCESSIBILITY ------------- */
:focus {
  outline: 2px solid #F2B705;
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: #F2B705;
  color: #204C39;
}
.skip-link:focus {
  left: 16px; top: 16px;
  width: auto; height: auto; padding: 2px 8px;
  font-size: 1rem;
}
/* ------------- SCROLLBAR (Elegant style) ------------- */
::-webkit-scrollbar {
  width: 8px; background: #E6F5DA;
}
::-webkit-scrollbar-thumb {
  background: #255E47; border-radius: 6px;
}

/* ==========================================================================
  END Lumenpunkt Bildung CSS (Elegant_Classic, Flexbox Only)
========================================================================== */
