/* ===== Blissvolle Lichtung | gradient_modern Style ===== */
/* ===== 1. 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f9fafb;
  color: #264653;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #2a9d8f;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f4a261;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
strong {
  font-weight: 700;
}

/* ===== 2. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-weight: 700;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
.subheadline {
  font-size: 1.1rem;
  color: #2a9d8f;
  margin-bottom: 18px;
}
p, ul li, ol li, blockquote {
  font-size: 1rem;
  font-weight: 400;
}

div.text-section ul {
  margin: 0 0 15px 20px;
  padding: 0;
}

/* Responsive typography scaling */
@media (min-width: 480px) {
  h1 { font-size: 2.75rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.35rem; }
}

/* ===== 3. LAYOUT & CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(38, 70, 83, 0.08);
}

/* ===== 4. HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: linear-gradient(90deg, #2a9d8f 0%, #264653 100%);
  padding: 0;
  box-shadow: 0 2px 12px rgba(38, 70, 83, 0.08);
  position: relative;
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 10px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.2s;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  color: #f4a261;
}
.cta-btn {
  background: #f4a261;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 16px;
  padding: 11px 26px;
  margin-left: 8px;
  box-shadow: 0 2px 14px rgba(244, 162, 97, 0.14), 0 1.5px 6px rgba(38, 70, 83, 0.09);
  transition: background 0.12s, color 0.18s, transform 0.2s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2a9d8f;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
}

/* ===== 5. BURGER MENU: MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  font-size: 2rem;
  color: #f4a261;
  background: transparent;
  border: none;
  display: none;
  margin-left: 10px;
  transition: color 0.2s, transform 0.2s;
  z-index: 30;
}
.mobile-menu-toggle:focus {
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 60px 24px rgba(38,70,83,0.14);
  z-index: 999;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.6,.34,.51,1) 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 30px 30px 28px;
}
.mobile-menu.open {
  transform: translateX(0) !important;
}
.mobile-menu-close {
  color: #264653;
  font-size: 2.2rem;
  align-self: flex-end;
  background: none;
  margin-bottom: 16px;
  border-radius: 50%;
  border: none;
  padding: 2px 10px 4px 10px;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #f4a26133;
  color: #2a9d8f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 10px 0;
  color: #264653;
  border-bottom: 1px solid #f2f2f2;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2a9d8f;
}

@media (max-width: 1080px){
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    padding: 10px 14px;
    font-size: 0.98rem;
  }
  .logo img {
    height: 38px;
  }
}
@media (max-width: 520px) {
  .logo img { height: 30px; }
}

/* ===== 6. HERO SECTION ===== */
.hero {
  width: 100%;
  background: linear-gradient(110deg, #2a9d8f 0%, #f4a261 100%);
  color: #264653;
  padding: 60px 0 50px 0;
  display: flex;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  gap: 18px;
  margin: 0 auto;
}
.hero h1, .hero .subheadline {
  color: #264653;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* ===== 7. FEATURES SECTION & LISTS ===== */
.features {
  background: #fff;
  box-shadow: 0 2px 14px rgba(42, 157, 143, 0.09);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px 42px 20px;
}
.features .content-wrapper {
  gap: 26px;
}
.feature-grid,
.topic-overview,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 0;
  justify-content: space-between;
}
.feature-grid li,
.topic-overview li,
.category-grid li {
  background: #f1f4f3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(38, 70, 83, 0.07);
  padding: 30px 20px 24px 20px;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 242px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-grid li:hover, .topic-overview li:hover, .category-grid li:hover {
  box-shadow: 0 8px 28px rgba(244, 162, 97, 0.19);
  transform: translateY(-3px) scale(1.035);
}
.feature-grid img,
.topic-overview img,
.category-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
}
.feature-grid h3,
.category-grid span {
  color: #2a9d8f;
  font-size: 1.12rem;
}

.category-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0 0 0;
}
.category-list li {
  background: #e6f3ef;
  color: #2a9d8f;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== 8. CARDS/LISTS & CAROUSEL ELEMENTS ===== */
.card-container, .service-cards, .workshop-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.service-cards li,
.workshop-list li,
.service-list li {
  background: #f1f4f3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(42, 157, 143, 0.08);
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.service-cards li:hover,
.workshop-list li:hover,
.service-list li:hover {
  box-shadow: 0 8px 30px rgba(42, 157, 143, 0.16);
  transform: translateY(-2px) scale(1.02);
}
.service-cards h3, .workshop-list h3, .service-list h3 {
  color: #2a9d8f;
}
.price, .date {
  color: #f4a261;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 5px;
}

/* Cards (for tips, previews) */
.tips-list, .tips-preview .tips-list, .list-of-tips, .detailed-tips-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  margin-top: 18px;
}
.tips-list li, .list-of-tips li, .tips-preview .tips-list li, .detailed-tips-list article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.07);
  padding: 22px 18px 16px 18px;
  flex: 1 1 230px;
  transition: box-shadow 0.17s, transform 0.15s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  min-width: 185px;
  max-width: 320px;
}
.tips-list li:hover, .list-of-tips li:hover, .tips-preview .tips-list li:hover, .detailed-tips-list article:hover {
  box-shadow: 0 8px 27px rgba(244,162,97,0.13);
  transform: translateY(-2px) scale(1.03);
}
.tips-list h3, .detailed-tips-list h3 {
  color: #264653;
  margin-bottom: 6px;
}
.tips-list a, .detailed-tips-list a, .list-of-tips a {
  color: #2a9d8f;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  transition: color 0.13s;
}
.tips-list a:hover, .detailed-tips-list a:hover, .list-of-tips a:hover {
  color: #f4a261;
  text-decoration: underline;
}

/* ===== 9. ABOUT & TEXTUAL BLOCKS ===== */
.about-short, .about, .contact-short, .contact, .map-snippet, .confirmation, .legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
}
.text-section ul,
.text-section ol {
  padding-left: 20px;
  margin-top: 0;
  color: #264653;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
}
.link-about {
  color: #2a9d8f;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.16s;
}
.link-about:hover {
  color: #f4a261;
  text-decoration: underline;
}

/* ===== 10. TESTIMONIALS ===== */
.testimonials {
  background: #f1f4f3;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.09);
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 16px rgba(38,70,83,0.11);
  padding: 20px 28px 20px 24px;
  margin-bottom: 24px;
  max-width: 520px;
  color: #264653;
  transition: box-shadow 0.15s, transform 0.19s;
}
.testimonial-card blockquote {
  font-size: 1.04rem;
  font-weight: 400;
  margin-bottom: 5px;
  font-style: italic;
  color: #264653;
  line-height: 1.7;
  position: relative;
}
.testimonial-card blockquote:before {
  content: '“';
  color: #f4a261;
  font-size: 2.1rem;
  position: absolute;
  left: -21px;
  top: -8px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #2a9d8f;
}

/* ===== 11. CTA SECTIONS ===== */
.cta {
  background: linear-gradient(92deg,#f4a261 0%, #2a9d8f 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 34px 18px 38px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(244,162,97,0.11);
}
.cta .content-wrapper {
  align-items: center;
}
.cta .cta-btn {
  color: #264653;
  background: #fff;
  font-size: 1.15rem;
  border: 2px solid #2a9d8f;
  margin-top: 0;
}
.cta .cta-btn:hover,
.cta .cta-btn:focus {
  background: #f4a261;
  color: #fff;
  border-color: #f4a261;
}

/* ===== 12. MAP SNIPPET ===== */
.map-snippet {
  margin: 18px 0 0 0;
  font-size: 0.98rem;
  color: #2a9d8f;
  background: #e6f3ef;
  border-radius: 14px;
  padding: 16px;
}

/* ===== 13. PROCESS & BENEFITS LIST ===== */
.process-steps, .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 10px 0;
}
.process-steps li::before {
  content: '✓';
  color: #2a9d8f;
  margin-right: 10px;
  font-weight: 700;
}
.benefits-list li::before {
  content: '★';
  color: #f4a261;
  margin-right: 9px;
  font-size: 0.9em;
}

/* ===== 14. LEGAL / INFO PAGES ===== */
.legal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.10);
  margin-bottom: 60px;
}
.legal .content-wrapper {
  gap: 22px;
}
.legal h1, .legal h2 {
  color: #2a9d8f;
}
.legal ol li {
  counter-increment: item;
  margin-bottom: 10px;
}
.legal ol li::before {
  content: counter(item) ". ";
  color: #2a9d8f;
}

/* ===== 15. FOOTER ===== */
footer {
  background: linear-gradient(90deg, #264653 0%, #2a9d8f 100%);
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 38px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 160px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.14s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #f4a261;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 2 1 290px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  height: 1.01em;
  margin-right: 6px;
  position: relative;
  top: 0.14em;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 1 1 150px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 7px;
}
.footer-brand p {
  font-size: 0.99rem;
  color: #e2e6e9;
}

/* ===== 16. CONFIRMATION/THANK YOU ===== */
.confirmation {
  background: #e6f3ef;
  border-radius: 22px;
  box-shadow: 0 2.5px 14px rgba(38,70,83,0.09);
  padding: 48px 22px;
  margin-bottom: 68px;
  align-items: center;
  text-align: center;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/* ===== 17. COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #f4a261;
  box-shadow: 0 -2px 32px rgba(38,70,83,0.11);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 12px 18px 12px;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fadeInUp 0.7s cubic-bezier(.44,.13,.4,1.01);
}
@keyframes fadeInUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 380px;
  margin-right: 16px;
  color: #264653;
  font-size: 1rem;
}
.cookie-btn,
.cookie-settings-btn {
  background: #2a9d8f;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 9px 18px;
  margin-right: 10px;
  transition: background 0.2s, color 0.18s, box-shadow 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #f4a261;
  color: #264653;
  box-shadow: 0 2px 12px rgba(244,162,97,0.15);
}
.cookie-settings-btn {
  background: #264653;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #2a9d8f;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(38,70,83,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModal 0.48s;
}
@keyframes fadeModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 6px 56px rgba(42,157,143,0.17);
  padding: 32px 26px 24px 26px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: popinModal 0.3s cubic-bezier(.6,.34,.51,1);
  position: relative;
}
@keyframes popinModal {
  0% { transform: scale(0.87) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #2a9d8f;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e6f3ef;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #2a9d8f;
}
.cookie-toggle:before {
  content: '';
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px; top: 2px;
  box-shadow: 0 0px 7px 0 rgba(38,70,83,0.07);
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.category-desc {
  font-size: 0.95rem;
  color: #6b7b85;
  margin-bottom: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 13px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #2a9d8f;
  z-index: 5;
  border-radius: 50%;
  padding: 2px 7px 2px 7px;
}
.cookie-modal-close:hover {
  background: #e6f3ef;
}

/* ===== 18. RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
    padding: 0 10px;
  }
  .features, .about-short, .about, .services-short, .tips-preview, .contact-short, .services, .legal, .testimonials {
    padding: 32px 8px;
  }
  .footer-nav { flex: 1 1 100px; }
  .footer-contact, .footer-brand { flex: 1 1 120px; }
}
@media (max-width: 768px) {
  /* Layout swaps for mobile-first flexbox */
  .container { max-width: 98vw; padding: 0 6px; }
  .content-wrapper { gap: 20px; }
  .feature-grid, .topic-overview, .category-grid, .card-container, .service-cards,
  .workshop-list, .service-list, .tips-list, .tips-preview .tips-list, .list-of-tips, .detailed-tips-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .tips-list li, .list-of-tips li, .tips-preview .tips-list li, .detailed-tips-list article,
  .feature-grid li, .topic-overview li, .category-grid li, .service-cards li, .workshop-list li, .service-list li {
    min-width: unset;
    max-width: 100%;
  }
  .footer-brand { align-items: flex-start; }
  .footer-nav { gap: 7px; }
  .footer-contact, .footer-brand, .footer-nav {
    margin-bottom: 18px;
  }
  .footer-brand img { height: 30px; }
  .cta { border-radius: 14px; padding: 16px 8px; }
  .testimonials, .about, .about-short, .services, .services-short, .contact, .contact-short, .legal {
    border-radius: 13px;
    padding: 22px 2.5vw;
  }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 520px) {
  .container { padding: 0 2px; }
  .hero { padding: 35px 0 28px 0; }
}

/* Mobile: text-image sections and general flex direction for stacked blocks */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ===== 19. UTILITY & MICRO-ANIMATION ===== */
.shadow-hover {
  box-shadow: 0 9px 28px rgba(42,157,143,0.13);
  transition: box-shadow 0.18s;
}
.rounded-image {
  border-radius: 15px;
}
.fade-in {
  animation: fadein 0.65s cubic-bezier(0.17,0.67,0.55,1.2) both;
}
@keyframes fadein {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: none; }
}

/* ===== 20. ACCESSIBILITY ===== */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid #2a9d8f; outline-offset: 2px; }

/* ===== 21. FLEXBOX MANDATORY PATTERNS ===== */
.card-container { display: flex; flex-wrap: wrap; gap: 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

/* ===== 22. SPACING MANDATORY ===== */
.section, .testimonials, .about-short, .about, .services-short, .tips-preview, .contact-short, .contact, .legal {
  margin-bottom: 60px !important;
}
.card, .testimonial-card, .service-cards li, .feature-grid li, .workshop-list li, .service-list li, .tips-list li, .list-of-tips li, .detailed-tips-list article {
  margin-bottom: 20px!important;
}
.card-container, .service-cards, .workshop-list, .service-list,
.feature-grid, .topic-overview, .category-grid, .tips-list, .list-of-tips, .detailed-tips-list {
  gap: 24px !important;
}
.content-grid, .text-image-section {
  gap: 20px !important;
}
.feature-item {
  gap: 15px !important;
}

/* ===== END ===== */