/* --------------------------------------------------
   CSS RESET & NORMALIZATION
-------------------------------------------------- */
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, main, 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; 
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; min-height: 100vh; background: #F9F8F5; color: #233321;}
*, *::before, *::after { box-sizing: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; border: 0; height: auto; }
table { border-collapse: collapse; width: 100%;}
th, td { padding: 12px 16px; text-align: left; }
input, button, textarea, select { font: inherit; outline: none; }
button { background: none; border: none; cursor: pointer; }

/* --------------------------------------------------
   FONT IMPORTS (Roboto + Montserrat)
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #233321;
  background: #F9F8F5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #163921;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4, h5, h6 { margin-bottom: 8px; }

p, ul li, ol li, dl dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233321;
  line-height: 1.7;
  margin-bottom: 14px;
}
strong { font-weight: 600; }

/* Responsive Heading Scale */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* --------------------------------------------------
   BRAND COLORS & NATURE ORGANIC PALETTE
-------------------------------------------------- */
:root {
  --brand-primary: #134469;
  --brand-secondary: #F2B705;
  --brand-accent: #FFFFFF;
  --nature-green: #4A834C;
  --nature-darkgreen: #163921;
  --nature-sand: #E9E1C0;
  --nature-taupe: #C9BFA1;
  --nature-earth: #C3A477;
  --nature-moss: #789262;
  --nature-soil: #675C4A;
}

/* --------------------------------------------------
   LAYOUT UTILITIES
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* On desktop, allow horizontal layouts where appropriate */
@media (min-width: 1024px) {
  .content-wrapper {
    flex-direction: row;
    gap: 36px;
    justify-content: space-between;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,46,12,0.14);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(36,46,12,0.20);
}

.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;
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #E9E1C0;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,46,12,0.08);
  color: #233321;
  position: relative;
}
.testimonial-card strong {
  color: #4A834C;
}
.testimonial-card span {
  color: #F2B705;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 1px 8px rgba(36,46,12,0.07);
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 200px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  background: #E9E1C0;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(36,46,12,0.07);
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 5px 20px 0 rgba(36,46,12,0.18);
  transform: translateY(-2px);
}


/* --------------------------------------------------
   HEADER & NAVIGATION (MOBILE & DESKTOP)
-------------------------------------------------- */
header {
  background: var(--brand-accent);
  box-shadow: 0 2px 12px rgba(36,46,12,0.05);
  padding: 0 0;
  width: 100%;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 72px;
}
header > a img {
  height: 44px;
  margin: 0 18px;
  display: block;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #134469;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #E9E1C0;
  color: #4A834C;
}
header .cta-primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: #4A834C;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 12px;
  margin-right: 12px;
  transition: background 0.2s, color 0.2s;
  z-index: 1020;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #134469;
  color: #fff;
}
@media (max-width: 1024px) {
  header {
    padding: 0 4px;
    height: 64px;
  }
  header nav {
    display: none; /* Hide desktop nav on mobile */
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    display: none;
  }
}

/* MOBILE OVERLAY MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,50,33,0.78);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #134469;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  margin: 18px 22px 18px 0;
  width: 44px;
  height: 44px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(36,46,12,0.06);
  transition: background 0.2s, color 0.2s;
  z-index: 2010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: #E9E1C0; color: #134469; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90vw;
  margin: 22px 0 0 0;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.17s,
              background 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F2B705;
  background: rgba(230,221,171,0.11);
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* MAIN LAYOUT & CONTAINERS */
main {
  min-height: 56vh;
  padding-bottom: 44px;
}

/* --------------------------------------------------
   BUTTONS & LINKS
-------------------------------------------------- */
.cta-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(93deg,#4A834C 80%, #134469 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(20,55,32,0.13);
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 10px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(93deg,#134469 60%, #4A834C 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(20,55,32,0.13);
}
.cta-secondary {
  background: #F2B705;
  color: #134469;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 22px;
  font-size: 1rem;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #E9E1C0;
  color: #233321;
}
button, .cta-primary, .cta-secondary {
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

/* --------------------------------------------------
   HERO AREA (Startseite)
-------------------------------------------------- */
.hero {
  background: linear-gradient(110deg, #F9F8F5 60%, #E9E1C0 100%);
  background-repeat: no-repeat;
  border-radius: 0 0 80px 0 / 0 0 48px 0; /* organic shape */
  box-shadow: 0 4px 32px 0 rgba(116,105,51,0.13);
  position: relative;
  margin-bottom: 60px;
  padding: 64px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #4A834C;
  font-size: 2.8rem;
  line-height: 1.14;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #233321;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 40px 0 / 0 0 28px 0;
    padding: 44px 0 18px 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* --------------------------------------------------
   FEATURES SECTION
-------------------------------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .features .feature-grid {
    gap: 14px;
  }
}
.features {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(36,46,12,0.08);
  margin-bottom: 60px;
}

/* --------------------------------------------------
   HOW IT WORKS (STEPS OL)
-------------------------------------------------- */
.how-it-works ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: step;
  justify-content: flex-start;
  margin-top: 16px;
}
.how-it-works ol li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(120,146,98, 0.06);
  gap: 12px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  position: relative;
}
.how-it-works ol li img {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
}

/* --------------------------------------------------
   CTA SECTION
-------------------------------------------------- */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #4A834C linear-gradient(120deg,#4A834C 83%, #134469 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px #13446911;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta .cta-primary {
  background: #F2B705;
  color: #134469;
  font-weight: 700;
  margin: 10px auto 0 auto;
}
.cta .cta-primary:hover {
  background: #fff7d1;
  color: #4A834C;
}
@media (max-width:768px){.cta{border-radius:18px;}}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonials .content-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 250px;
  max-width: 340px;
  min-width: 220px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer p {
color: white;}
footer {
  background: #163921;
  color: #fff;
  padding: 36px 0 22px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 46px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.91;
  border-radius: 7px;
  padding: 7px 4px;
  transition: background 0.19s, color 0.19s;
}
footer nav a:hover,
footer nav a:focus {
  background: #F2B705;
  color: #134469;
}
footer img {
  max-height: 42px;
  margin-bottom: 13px;
}
footer .contact-miniform p img { width:16px; margin-right:4px;vertical-align:middle; }
footer .contact-miniform p { font-size:0.98em; margin-bottom:7px; }
@media (max-width:768px){
  footer .content-wrapper{flex-direction:column;gap:18px;}
  footer {border-radius: 22px 22px 0 0;}
}

/* --------------------------------------------------
   PRICING & COMPARISON TABLES
-------------------------------------------------- */
.pricing-table, .comparison-table {
  width: 100%;
  margin: 0 0 16px 0;
  font-size: 1rem;
}
.pricing-table th, .comparison-table th {
  background: #E9E1C0;
  color: #134469;
  font-family: 'Montserrat',Arial,sans-serif;
}
.pricing-table td, .comparison-table td {
  background: #fff;
  color: #233321;
}
.pricing-table tr:nth-child(even), .comparison-table tr:nth-child(even) {
  background: #F9F8F5;
}
.tariff-note { color: #675C4A; font-size: 0.98em; }

/* --------------------------------------------------
   SERVICE LIST/ITEMS
-------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 8px rgba(180,170,61,0.06);
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 180px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.service-item img { width:36px; border-radius:50%; background: #E9E1C0; box-shadow: 0 1px 4px rgba(36,46,12,0.08); padding:4px;}
.service-item:hover,.service-item:focus-within{ box-shadow:0 4px 22px 0 rgba(180,170,61,0.16); transform: translateY(-2px); }

/* --------------------------------------------------
   ABOUT US / TEAM
-------------------------------------------------- */
.about .text-section, .team .text-section { padding: 0; }
.trust { display: flex; align-items: center; gap:12px; margin-top:14px; }
.trust img { width:26px; }

/* --------------------------------------------------
   FAQ & LEGAL
-------------------------------------------------- */
.faq dt, .faq-snippet dt, .legal dt {
  font-size: 1.13rem;
  font-weight: 600;
  margin-top: 18px;
}
.faq dd, .faq-snippet dd, .legal dd {
  margin-left: 0;
  margin-bottom: 8px;
}
.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.faq-topic-nav a {
  background: #E9E1C0;
  color: #134469;
  border-radius: 8px;
  padding: 7px 15px;
  font-family: 'Montserrat';
  font-weight: 600;
  transition: background 0.17s, color 0.18s;
}
.faq-topic-nav a:hover { background: #4A834C; color: #fff; }

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-details p img { width:16px; margin-right:5px;vertical-align:middle; }
.office-hours ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.office-hours li img { width: 15px; margin-right: 3px;vertical-align:middle; }

/* MISC ORGANIC EFFECTS - BORDERS, SHAPES */
section, .card, .testimonial-card, .feature-item, .service-item, .cta {
  border-radius: 20px;
}

/* --------------------------------------------------
   MODAL, OVERLAY & COOKIE BANNER
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5000;
  background: #E9E1C0;
  color: #163921;
  box-shadow: 0 -2px 22px #16392117;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 1rem;
  animation: slideInUp 0.7s;
}
@keyframes slideInUp {
  0% { transform: translateY(42px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  padding: 8px 22px;
  border-radius: 13px;
  font-family: 'Montserrat';
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-banner .btn-accept { background: #4A834C; color: #fff; }
.cookie-banner .btn-accept:hover { background: #134469; color: #fff; }
.cookie-banner .btn-decline { background: #C3A477; color: #163921; }
.cookie-banner .btn-decline:hover { background: #F2B705; color: #134469; }
.cookie-banner .btn-settings { background: #fff; color: #4A834C; border: 1.4px solid #4A834C; }
.cookie-banner .btn-settings:hover {background:#E9E1C0;color:#134469;}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,50,33,0.62);
  z-index: 5100;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s 0.05s, visibility 0s 0.35s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 38px 24px 24px 24px;
  min-width: 300px;
  max-width: 90vw;
  box-shadow: 0 2px 24px #16392117;
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 17px;
  animation: fadeIn 0.36s;
}
@keyframes fadeIn {
  0%{opacity:0;transform:scale(0.90);}
  100%{opacity:1;transform:none;}
}
.cookie-modal-content h3 { color: #134469; font-size: 1.2rem; margin-bottom: 9px; }
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: #E9E1C0;
  color: #134469;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover { background: #F2B705; color: #fff; }
.cookie-modal-category {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; margin-bottom: 7px;
}
.cookie-modal-category label {
  font-weight: 500;
  color: #4A834C;
}
.cookie-modal-toggle {
  appearance: none;
  width: 32px; height: 18px;
  background: #C3A477;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-modal-toggle:checked {
  background: #4A834C;
}
.cookie-modal-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.16s;
}
.cookie-modal-toggle:checked::before {
  transform: translateX(14px);
}
/* Essential cookies always enabled */
.cookie-modal .essential label { color: #675C4A; }
.cookie-modal .essential .cookie-modal-toggle { background: #C3A477; cursor: not-allowed; }

/* --------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
-------------------------------------------------- */
a, button, .cta-primary, .cta-secondary {
  transition: color 0.20s, background 0.21s, box-shadow 0.21s, transform 0.16s;
}
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:active, .feature-item:active, .service-item:active,
.card:focus, .feature-item:focus, .service-item:focus {
  outline: 2px solid #F2B705;
}

/* --------------------------------------------------
   CONFIRMATION / THANK YOU
-------------------------------------------------- */
.confirmation {
  background: #E9E1C0;
  border-radius: 22px;
  padding: 44px 28px;
  margin-bottom: 30px;
  box-shadow: 0 2px 22px #1639210C;
  text-align: center;
}
.confirmation h1,
.confirmation p {
  color: #134469;
  margin-bottom: 12px;
}

/* --------------------------------------------------
   RESPONSIVE LAYOUTS
-------------------------------------------------- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .feature-item, .service-item, .testimonial-card, .card {
    min-width: 140px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section, .cta, .features, .footer, .confirmation, .hero {
    padding: 16px 8px !important;
    margin-bottom: 30px;
  }
  .content-grid, .card-container, .features .feature-grid, .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 14px;
  }
  .about .content-wrapper, .team .content-wrapper, .why-choose-us .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
  }
  .service-list {
    flex-direction: column !important;
    gap: 14px;
  }
  .feature-item, .service-item {
    margin-bottom: 12px;
  }
}

/* Ensure min spacing between content cards/sections */
.card:not(:last-child), .testimonial-card:not(:last-child), .feature-item:not(:last-child), .service-item:not(:last-child) {
  margin-bottom: 20px;
}

/* Ensure no elements overlap */
.card, .testimonial-card, .feature-item, .service-item {
  z-index: 1;
}

/* Misc alignments */
.text-section, .booking-form .text-section { margin-bottom: 22px; }

/* Hide elements visually only if necessary */
[hidden] { display: none !important; }

/* End of comprehensive CSS */
