/* ========================================================
   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;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

body {
  line-height: 1.5;
  background: #18191B;
  color: #F3F7F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}

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

a {
  color: #A6764C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1.6,.6,1);
}

a:hover, a:focus {
  color: #FFD580;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

strong {
  font-weight: 700;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

:focus {
  outline: 2px solid #A6764C;
  outline-offset: 2px;
}

/* ================================================
   Custom Properties (Fallbacks included)
   ================================================ */
:root {
  --color-primary: #2B2D2F;
  --color-primary-dark: #18191B;
  --color-secondary: #A6764C;
  --color-secondary-hover: #FFD580;
  --color-accent: #F3F7F2;
  --color-background: #18191B;
  --color-card-bg: #222326;
  --color-shadow: rgba(166,118,76,0.11);
  --color-shadow-strong: rgba(166,118,76,0.28);
  --color-neon: #00ffe7;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius: 16px;
  --radius-card: 18px;
  --transition-fast: 0.18s cubic-bezier(.8,1.5,.2,1.2);
  --transition: 0.30s cubic-bezier(.7,2.1,.31,.99);
  --shadow: 0 4px 32px var(--color-shadow);
  --shadow-strong: 0 2px 16px var(--color-shadow-strong);
  --section-gap: 60px;
  --section-pad: 40px 20px;
  --card-gap: 24px;
  --card-margin: 20px;
  --card-pad: 28px 20px;
}


/* ================================================
   Body and Typography
   ================================================ */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #232428 0%, #2B2D2F 60%, #222126 100%);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1.6;
  letter-spacing: 0.01em;
  /* subtle neon-like background gloss – solid fallback only for compatibility */
  /*box-shadow: 0 0 0 9999px #232428 inset;*/
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-neon);
  letter-spacing: 0.03em;
  line-height: 1.18;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; text-shadow: 0 0 18px var(--color-neon); }
h2 { font-size: 2rem; text-shadow: 0 0 8px rgba(0,255,231,0.25); }
h3 { font-size: 1.35rem; color: var(--color-secondary); text-shadow: 0 0 2px #A6764C55; }
h4, h5, h6 { font-size: 1.1rem; color: var(--color-secondary); }

.subheadline {
  font-size: 1.2rem;
  color: #F3F7F2;
  opacity: 0.92;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px #2324286e;
}

p, li, blockquote {
  font-family: var(--font-body);
  color: #F3F7F2;
  font-size: 1rem;
  margin-bottom: 0.9em;
}

.privacy-policy-text, .terms-of-service-text, .gdpr-text, .cookie-policy-text {
  background: #222326;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  color: #F3F7F2;
}


/* ================================================
   Container & Global Flex Layout
   ================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.section {
  margin-bottom: var(--section-gap);
  padding: var(--section-pad);
}


/* ================================================
   Header & Navigation (incl. Burger Menu)
   ================================================ */
header {
  background: #18191B;
  box-shadow: 0 2px 20px #19181a59;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header .logo {
  display: flex;
  align-items: center;
  margin-left: 16px;
  height: 62px;
}
header .logo img {
  max-height: 48px;
  filter: drop-shadow(0 0 6px var(--color-neon));
  transition: filter 0.18s;
}
header .logo:hover img {
  filter: drop-shadow(0 0 12px #00ffe7CC);
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-left: 34px;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: #eee;
  padding: 10px 20px 10px 8px;
  border-radius: 24px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  background: #25294b2c;
}

.cta-button {
  display: inline-flex;
  gap:8px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  background: var(--color-neon);
  border-radius: 28px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  transition: background 0.2s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 18px #00ffe777, 0 0px 0 var(--color-shadow);
  text-shadow: 0 1px 8px #ffffff33;
  outline: none;
  margin-left: 20px;
  margin-right: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: #1dfedc;
  color: #18191B;
  box-shadow: 0 4px 26px #00ffe766, 0 0px 0 var(--color-shadow);
}

/* Burger menu button */
.mobile-menu-toggle {
  appearance: none;
  display: none;
  background: var(--color-card-bg);
  color: var(--color-neon);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  transition: background 0.16s, color 0.15s;
  margin-right: 8px;
  margin-left: 8px;
  z-index: 30;
}
.mobile-menu-toggle:active {
  background: #18191B;
}

/* MOBILE NAVIGATION - Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(30,34,40,0.98);
  box-shadow: 0 0 60px #191d43AA;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.68,-0.28,.44,1.08);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  border: none;
  font-size: 2.5rem;
  margin: 16px 18px;
  align-self: flex-end;
  transition: color 0.17s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD580;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px 0 32px;
}
.mobile-nav a {
  color: var(--color-accent);
  padding: 14px 0 14px 8px;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 0 24px 24px 0;
  width: 100%;
  transition: background 0.12s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00ffe726;
  color: var(--color-neon);
}

@media (max-width: 1020px) {
  .main-nav { gap: 6px; }
  .main-nav a { padding: 10px 8px; font-size:1rem; }
  .cta-button { margin-left: 8px; margin-right: 6px; font-size: 1rem; padding:12px 18px; }
}

@media (max-width: 900px) {
  header .main-nav { display: none; }
  header .cta-button { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

@media (min-width: 901px) {
  .mobile-menu { display:none !important; }
  .mobile-menu-toggle { display: none !important; }
}


/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: linear-gradient(115deg, #232431 0%, #232428 70%, #222226 100%);
  box-shadow: 0 4px 28px #00ffe7cc, 0 2px 24px #191a21ee;
  display: flex;
  align-items: center;
  border-radius: 0 0 26px 26px;
  margin-bottom: var(--section-gap);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 34px;
  padding-bottom: 35px;
}
.hero h1 {
  color: var(--color-neon);
  font-size: 2.2rem;
  margin-bottom: 0.3em;
}

/* ================================================
   FEATURES SECTIONS
   ================================================ */
.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--section-gap);
  padding: var(--section-pad);
  background: #232431;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px #00ffe733, 0 2px 10px #191a2328;
}
.features .content-wrapper {
  gap: 34px;
}

/* --- Feature grid for Highlight cards and others --- */
.feature-grid, .article-preview-grid, .target-groups-grid, .values-grid, .competence-development-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-gap);
  margin-bottom: 28px;
  align-items: stretch;
  width: 100%;
}
.feature-card, .blog-article-preview, .service-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 24px var(--color-shadow);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: var(--card-margin);
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 230px;
  border: 1.5px solid #00ffe737;
  transition: box-shadow var(--transition), border var(--transition-fast), transform var(--transition-fast);
}
.feature-card:hover, .blog-article-preview:hover, .service-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow-strong), 0 1px 12px #00ffe7;
  border-color: #FFD580;
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.feature-card img, .cuppings-overview img {
  max-width: 56px;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 5px #00ffe733);
}

/* Article grid for Blog */
.article-preview-grid {
  gap: 24px;
  margin: 14px 0 32px 0;
}

.blog-article-preview {
  min-width: 240px;
  max-width: 370px;
  background: var(--color-card-bg);
  border: 1.5px solid #00ffe737;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 20px var(--color-shadow);
  padding: var(--card-pad);
  margin-bottom: var(--card-margin);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), border var(--transition-fast);
}

/* Target groups & value grid */
.target-groups-grid, .values-grid, .competence-development-grid {
  gap: 18px;
  flex-direction: row;
  flex-wrap: wrap;
}
.target-groups-grid > div, .values-grid > div, .competence-development-grid > div {
  background: #232428;
  color: var(--color-neon);
  border-radius: var(--radius);
  padding: 18px 18px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 600;
  min-width: 160px;
  margin-bottom: 12px;
  text-align: center;
  flex: 1 1 110px;
  box-shadow: 0 1px 10px #00ffe77a;
}


/* ================================================
   CARD-CONTAINER AND GRIDS
   ================================================ */
.card-container, .detailed-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 16px;
  background: #b1b5b1;
  color: #18191B;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px #00ffe720, 0 2px 12px #191a2185;
  margin-bottom: 22px;
  border: 2px solid #A6764C22;
  min-width: 210px;
  max-width: 600px;
  font-size: 1.13rem;
  transition: box-shadow 0.20s, transform 0.17s, border 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px #A6764C34, 0 2px 14px #00ffe7;
  border-color: #FFD580;
  transform: scale(1.03) translateY(-3px);
}
.testimonial-meta {
  color: #232428;
  font-size: 0.97rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-top: 7px;
  text-shadow:none;
}


/* ================================================
   Lists, Cards, Benefits
   ================================================ */
.services-list, .usp-list, .benefits-list ul, .corporate-benefits ul, .faq-list ul, .popular-posts-list, .cuppings-overview {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-list li, .usp-list li, .benefits-list ul li, .corporate-benefits ul li, .faq-list ul li, .popular-posts-list li, .cuppings-overview li {
  background: #222429;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 1.04rem;
  color: #F3F7F2;
  border: 1px solid #393b47;
  margin-bottom: 0;
}
.cuppings-overview li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  max-width: 38px;
}

.services-list span, .detailed-services-list .service-card > div {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-weight: 700;
  padding-left: 8px;
}
.detailed-services-list {
  gap: 24px;
  margin-bottom: 34px;
}
.service-card {
  border-radius: var(--radius-card);
  background: var(--color-card-bg);
  box-shadow: var(--shadow);
  padding: 28px 20px 18px 20px;
  transition: box-shadow 0.19s, border 0.16s, transform 0.16s;
  border: 1.5px solid #00ffe737;
  min-width: 250px;
  max-width: 400px;
}
.service-card h3 {
  margin-bottom: 5px;
}
.service-card:hover {
  box-shadow: 0 6px 36px #00ffe7A0;
  border-color: #FFD580;
  transform: translateY(-4px) scale(1.027);
}

ul.usp-list li::before {
  content: '\272A ';
  color: #FFD580;
  font-size: 1em;
  margin-right: 8px;
}

ul.benefits-list ul li::before {
  content: '\2022 ';
  color: #00ffe7;
  margin-right: 6px;
}

.interactive-element {
  background: #222429;
  color: #F3F7F2;
  border-radius: var(--radius-card);
  padding: 26px 20px;
  box-shadow: 0 2px 16px #00ffe730;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

.opening-hours {
  background: #232428;
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #A6764C;
  margin-bottom: 22px;
}
.opening-hours strong {color: #FFD580;}

.faq-list h3 {
  color:var(--color-neon); margin-bottom:8px;
}
.faq-list ul li {
  margin-bottom: 8px;
}

.brand-values {
  margin-top: 22px;
  background: #232429;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px #A6764C33;
}
.brand-values h3 {margin-bottom: 8px;}

.accreditation-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 10px;
}
.accreditation-badges img {
  height: 44px;
  filter: drop-shadow(0 0 7px #00ffe7b9);
}

.map-location {
  margin: 12px 0 22px 0;
  background: #222429;
  border-radius: var(--radius);
  color: #A6764C;
  padding:18px;
}


/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  width: 100%;
  margin-bottom: var(--section-gap);
}
.testimonials .content-wrapper {
  gap: 26px;
}

.logo-slider {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  margin-top: 20px;
}
.logo-slider img {
  height: 36px;
  filter: grayscale(1) brightness(2) drop-shadow(0 2px 8px #00ffe771);
}


/* ================================================
   CONTACT & FOOTER
   ================================================ */
.contact-info-grid, .contact-details-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-info-grid > div, .contact-details-grid > div {
  background: #232428;
  border-radius: var(--radius);
  color: #F3F7F2;
  padding: 15px 18px;
  min-width: 180px;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.contact-info-grid a, .contact-details-grid a {
  color: #A6764C;
  font-weight: bold;
}

footer {
  background: #18191B;
  color: var(--color-accent);
  margin-top: 54px;
  padding: 32px 0 18px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 30px #21212366;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap:32px;
  justify-content:space-between;
}
.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap:10px;
  margin-bottom:18px;
}
.footer-menu-links a {
  color: #FFD580;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.22s;
}
.footer-menu-links a:hover {
  color: var(--color-neon);
}
.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap:7px;
  align-items: center;
}
.footer-brand-info img {
  max-width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px #00ffe799);
}
.newsletter-signup {
  display: flex;
  flex-direction:column;
  align-items: flex-end;
  gap: 10px;
}


/* =====================================================
   Cookie Consent Banner & Modal (Animations)
   ===================================================== */
.cookie-consent-banner {
  position: fixed;
  width:100vw;
  max-width:100vw;
  left: 0; right: 0;
  bottom: 0;
  background: #232428;
  color: #F3F7F2;
  z-index: 10001;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -4px 40px #A6764C22;
  padding: 22px 16px 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  animation: fadeInUp 0.8s cubic-bezier(.22,.85,.82,1.7);
}
.cookie-consent-banner p { color: #F3F7F2; }
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-neon);
  color: var(--color-primary-dark);
  border: none;
  border-radius: 21px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-right:0;
  box-shadow: 0 2px 9px #00ffe733, 0 2px 1px #A6764C2a;
  transition: background 0.16s,color 0.16s,box-shadow 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1dffe3;
  color: #232428;
  box-shadow: 0 4px 28px var(--color-neon), 0 2px 6px #FFD58055;
}
.cookie-btn.reject {
  background: #232428;
  color: #FFD580;
  border: 1.5px solid #FFD580;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #18191B;
  color: #FFD580;
}
.cookie-btn.settings {
  background: none;
  color: #A6764C;
  border: none;
  text-decoration: underline;
}
.cookie-btn.settings:hover { color: #FFD580; background:none; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left:0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center; justify-content: center;
  background:rgba(34,40,46,0.95);
  z-index: 11001;
  animation: fadeIn 0.32s cubic-bezier(.38,1.6,.7,1);
}
.cookie-modal-inner {
  background: #222429;
  border-radius: 26px;
  box-shadow: 0 4px 40px #00ffe7aa, 0 2px 18px #000b0baa;
  max-width: 420px;
  min-width: 290px;
  width: 90vw;
  padding: 40px 24px 32px 24px;
  position: relative;
  font-family: var(--font-body);
  color: #F3F7F2;
}
.cookie-modal-inner h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  color: var(--color-neon);
}
.cookie-modal-inner label {
  display: flex;
  align-items: center;
  gap:10px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #232428;
  border-radius: 11px;
  border: 2px solid #A6764C;
  position: relative;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #00ffe7;
  border-color: #00ffe7;
}
.cookie-toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #FFD580;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-toggle:checked::before {
  left: 23px;
  background: #A6764C;
}

.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2rem;
  color: #FFD580;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-category-desc {
  color: #aaa;
  font-size: 0.98em;
  margin-left: 26px;
  margin-bottom: 12px;
}

/* ===================================================================
   RESPONSIVE STYLES (Mobile-First, Desktop Enhancements below)
   =================================================================== */

@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  .content-wrapper { padding-left: 0; padding-right: 0;}
}
@media (max-width: 900px) {
  .footer-menu-links, .newsletter-signup, .footer-brand-info {
    flex: 1 1 180px;
    align-items: flex-start;
  }
  .footer-brand-info { align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { padding-left:8px; padding-right:8px; }
  .hero h1 { font-size: 2.1rem; }
  .content-wrapper { gap: 16px; }

  .section { padding: 28px 6px; margin-bottom:38px; }
  .features, .features .content-wrapper { gap: 20px; }
  .feature-grid, .article-preview-grid, .target-groups-grid, .values-grid, .competence-development-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-card, .blog-article-preview, .service-card {
    max-width: 100%; min-width: 0; width: 100%;
  }
  .card-container, .detailed-services-list, .article-preview-grid {
    flex-direction: column;
    gap:16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding:18px 7px; min-width:0;
  }
  .logo-slider { gap: 14px; }
  .contact-info-grid, .contact-details-grid {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.6rem; }
  .subheadline { font-size: 1.05rem; }
}

/* text-image section special responsive */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ================FLEX LAYOUT SPACING COMPLIANCE=================
   .section, .card-container, .card, .content-grid, .text-image-section,
   .testimonial-card, .feature-item all enforced above
=============================================================== */

/* ================================================
   Micro-interactions & Animation Keyframes
   ================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}