/* ==========================================================================  
   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, 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: #F5F7FA;
  color: #15415A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.7,.3,0,1);
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
}
button, .cta-btn {
  cursor: pointer;
}

/* ==========================================================================  
   BRAND COLORS & LUXURY PREMIUM VARIABLES  
   ========================================================================== */
:root {
  --brand-primary: #15837D;
  --brand-accent: #15415A;
  --brand-background: #F5F7FA;
  --brand-white: #fff;
  --brand-black: #222;
  --brand-gold: #C6A55A;
  --brand-gold-soft: #EEE4CB;
  --luxury-bg: #FAFAFD;
  --luxury-text: #1C2431;
  --luxury-muted: #ced7de;
  --luxury-border: #E6E0D7;
  --luxury-shadow: 0 4px 16px rgba(21, 65, 90, 0.06), 0 1.5px 4px rgba(198,165,90,0.04);
  --shadow-card: 0 4px 16px rgba(21,65,90,0.06), 0 1px 2px rgba(21,65,90,0.02);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --border-radius-card: 18px;
  --border-radius-btn: 24px;
  --layout-gap: 24px;
  --transition-fast: 0.18s cubic-bezier(.5,.1,.39,1.67);
  --transition: 0.32s cubic-bezier(.5,.1,.39,1.33);
}

/* ==========================================================================  
   BASE TYPOGRAPHY  
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--luxury-text);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.2rem;
  line-height: 1.3;
}
p, li, blockquote {
  font-family: var(--font-body);
  color: #284153;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: var(--brand-accent);
  border-left: 4px solid var(--brand-gold);
  padding-left: 18px;
  margin-bottom: 8px;
}
strong {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ==========================================================================  
   GENERAL LAYOUT & UTILITY CLASSES  
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
}
.section, section:not([class]) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--luxury-bg);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  background: var(--brand-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow var(--transition-fast);
  border: 1.5px solid var(--luxury-border);
  min-width: 250px;
  flex: 1 1 220px;
  max-width: 350px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(21,65,90,0.12), 0 1.5px 10px rgba(198,165,90,0.12);
}
.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;
  background: #fff;
  border: 1.5px solid var(--luxury-border);
  border-left: 5px solid var(--brand-gold);
  border-radius: var(--border-radius-card);
  box-shadow: var(--luxury-shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #202C38;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================================  
   HEADER & NAVIGATION  
   ========================================================================== */
header {
  background: var(--brand-white);
  width: 100%;
  box-shadow: 0 1px 6px rgba(21,67,90,0.10);
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--brand-accent);
  font-size: 1rem;
  padding: 7px 0;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-primary);
  border-bottom: 2px solid var(--brand-gold);
}
.cta-btn {
  background: var(--brand-primary);
  color: var(--brand-white);
  font-family: var(--font-display);
  padding: 12px 32px;
  border-radius: var(--border-radius-btn);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--transition), box-shadow var(--transition-fast), color var(--transition-fast);
  box-shadow: 0 2px 10px rgba(21,67,90,0.08);
  border: 1.5px solid var(--brand-gold);
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-gold);
  color: var(--brand-black);
  box-shadow: 0 4px 24px rgba(21,67,90,0.13);
  border-color: var(--brand-primary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  margin-left: 22px;
  padding: 0 10px;
  border-radius: 9px;
  transition: background var(--transition-fast);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--luxury-muted);
}

/* ##########################################################################
   MOBILE NAVIGATION OVERLAY
########################################################################### */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 247, 250, 0.96);
  box-shadow: 0 0 48px rgba(21,65,90,0.23);
  z-index: 2222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.95,.22,.55,1.55);
  padding-top: 46px;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 56px rgba(21,65,90,0.26);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: var(--brand-white);
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: 50%;
  border: 1.5px solid var(--brand-gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(21,65,90,0.04);
  z-index: 10;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-gold);
  color: var(--brand-black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 24px;
  width: 100vw;
  margin-top: 38px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--brand-accent);
  font-family: var(--font-display);
  padding: 16px 0 10px 4px;
  border-left: 3px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--brand-primary);
  border-left: 3px solid var(--brand-gold);
}

/* ##########################################################################
   HERO SECTIONS & CALLS TO ACTION
########################################################################### */
.hero {
  background: linear-gradient(102deg, #F5F7FA 60%, var(--brand-gold-soft) 100%);
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 32px rgba(21,67,90,0.09);
  min-height: 260px;
}
.hero h1 {
  color: var(--brand-primary);
}
.hero .cta-btn {
  margin-top: 16px;
  margin-left: 0;
}
.cta {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--luxury-shadow);
}
.cta h2, .cta p, .cta a {
  color: #fff !important;
}
.cta-btn {
  margin-top: 8px;
}
.link {
  color: var(--brand-primary);
  font-weight: 600;
  text-underline-offset: 3px;
  text-decoration: underline;
  transition: color var(--transition);
}
.link:hover, .link:focus {
  color: var(--brand-gold);
}

/* ==========================================================================  
   FEATURES, SERVICES, LISTS  
   ========================================================================== */
.features ul, .services ul, .moebel-services ul, .cases ul, .faq-accordion, .team ul, .about ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features ul li, .services ul li, .moebel-services ul li, .cases ul li, .team ul li, .about ul li {
  display: flex;
  align-items: flex-start;
  font-size: 1.07rem;
  gap: 13px;
  padding: 10px 0 10px 2px;
  border-left: 3px solid var(--brand-gold);
  background: none;
  color: var(--brand-accent);
  font-family: var(--font-body);
}
.features ul li img, .services-main ul li img, .moebel-services ul li img, .cases ul li img  {
  width: 28px;
  height: 28px;
  margin-right: 9px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ==========================================================================  
   PRICING TABLE & LEGAL CONTENT  
   ========================================================================== */
.pricing table {
  width: 100%;
  margin: 28px 0;
  background: #fff;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21,65,90,0.06);
  border: 1px solid var(--luxury-border);
}
.pricing th, .pricing td {
  font-family: var(--font-body);
  padding: 16px 14px;
  border-bottom: 1px solid var(--luxury-border);
  text-align: left;
}
.pricing th {
  background: var(--brand-gold-soft);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-accent);
}
.pricing tr:last-child td {
  border-bottom: none;
}
.legal {
  background: #fff;
  padding: 40px 22px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--luxury-shadow);
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 18px;
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.legal ul li {
  padding-left: 16px;
  position: relative;
}
.legal ul li:before {
  content: "•";
  color: var(--brand-primary);
  font-size: 1.15em;
  position: absolute;
  left: 0;
  top: 2px;
}

/* ==========================================================================  
   FAQ ACCORDION  
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  font-size: 1.13rem;
  margin-bottom: 3px;
  font-family: var(--font-display);
  color: var(--brand-primary);
  cursor: pointer;
}
.faq-accordion p {
  font-size: 1rem;
  color: #49586B;
  border-left: 2px solid var(--brand-gold);
  padding-left: 14px;
  margin-bottom: 8px;
  background: #FAFAFC;
  border-radius: 0 9px 9px 0;
}

/* ==========================================================================  
   TESTIMONIALS & CASES  
   ========================================================================== */
.testimonials, .testimonials-main {
  background: var(--luxury-bg);
}
.testimonials h2, .testimonials-main h1 {
  color: var(--brand-primary);
}
.testimonial-card span[aria-label="5 Sterne"] {
  color: var(--brand-gold);
  font-size: 1.3em;
  letter-spacing: 1px;
  font-family: var(--font-display);
  margin-left: 8px;
}

.cases ul li strong {
  color: var(--brand-gold);
  font-weight: 700;
}

/* ==========================================================================  
   FOOTER  
   ========================================================================== */
footer {
  background: var(--brand-accent);
  color: var(--brand-white);
  padding: 48px 0 22px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 105px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 2 1 180px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--brand-white);
  font-size: 1.04rem;
  font-family: var(--font-display);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-gold);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3e9d2;
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
.footer-legal {
  color: #E4DAB5;
  font-size: 0.94rem;
  margin: 10px 0 6px 0;
}
.footer-legal a {
  color: #E4DAB5;
  transition: color var(--transition-fast);
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--brand-gold);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: brightness(1.14);
  opacity: 0.89;
  transition: opacity 0.2s, filter 0.2s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: drop-shadow(0 3px 6px #C6A55A60);
}

/* ==========================================================================  
   CONTACT DETAILS  
   ========================================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 10px 0;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 21px;
  height: 21px;
}

/* ==========================================================================  
   CARD & BUTTON STYLES REFINEMENT (LUXURY PREMIUM)
   ========================================================================== */
.card, .service-card, .testimonial-card, .feature-card {
  border-radius: var(--border-radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--luxury-border);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.card:hover, .feature-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(198,165,90,0.13);
  border-color: var(--brand-gold);
}
button, .cta-btn {
  box-shadow: 0 2px 8px rgba(198,165,90,0.07), 0 1px 2px rgba(21,65,90,0.08);
  border-radius: var(--border-radius-btn);
  border: 1.5px solid var(--brand-gold);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: var(--font-display);
  font-weight: 600;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 0 3px var(--brand-gold-soft);
}

/* ==========================================================================  
   MICRO-INTERACTIONS & FOCUS  
   ========================================================================== */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}
.cta-btn:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

/* ==========================================================================  
   COOKIE CONSENT BANNER & MODAL  
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8ed;
  color: #1C2431;
  box-shadow: 0 -2px 32px rgba(21,65,90,0.09);
  border-top: 3.5px solid var(--brand-gold);
  padding: 22px 18px;
  z-index: 3333;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  animation: cookie-slide-in var(--transition) 1;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.08rem;
  color: #2E3726;
  margin: 0 18px 0 0;
}
.cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--border-radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-right: 0;
  font-weight: 600;
  border: 1.5px solid var(--brand-gold);
  background: #fff;
  color: var(--brand-accent);
  transition: background var(--transition); color var(--transition);
}
.cookie-btn.accept {
  background: var(--brand-gold);
  color: var(--brand-black);
  border-color: var(--brand-gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff8ed;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FAF2E3;
  border-color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #fff;
  color: #C45555;
  border-color: #F5E3CE;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  border-color: #C45555;
  color: #fff;
  background: #C45555;
}
/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,65,90,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3334;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff8ed;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(198,165,90,0.12);
  max-width: 430px;
  width: 95vw;
  padding: 38px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: cookie-modal-fadein .44s cubic-bezier(.77,.03,.58,.98);
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-content h3 {
  color: var(--brand-primary);
  font-size: 1.38rem;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--brand-primary);
  border-radius: 50%;
  font-size: 1.6rem;
  border: 1.2px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-gold);
  color: var(--luxury-bg);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 28px;
}

/* ==========================================================================  
   RESPONSIVE DESIGN  
   ========================================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  footer .container,
  .section, section, .legal {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .footer-nav { flex: 1 1 120px; }
}
@media (max-width: 768px) {
  /* HEADER */
  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 11px;
    padding-bottom: 11px;
    gap: 7px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 1102;
  }
  /* LAYOUT */
  .container { max-width: 100%; padding-left: 6vw; padding-right: 6vw; }
  .section, section, .legal {
    margin-bottom: 38px;
    padding: 24px 6vw;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 18px 14px;
    gap: 10px;
    min-width: 0;
    max-width: 98vw;
  }
  .footer-nav {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .section, section, .legal { padding: 14px 2vw; }
  .footer-nav { gap: 5px; }
  .footer-contact p, .footer-legal, .cases ul li, .features ul li {
    font-size: 0.94rem;
  }
}

/* ==========================================================================  
   SPECIAL THANK YOU PAGE  
   ========================================================================== */
.thank-you {
  background: #fff;
  border-radius: var(--border-radius-card);
  box-shadow: var(--luxury-shadow);
  margin: 44px 0 0 0;
  padding: 50px 18px;
}
.thank-you h1 {
  color: var(--brand-primary);
  margin-bottom: 20px;
}

/* ==========================================================================  
   SPACING UTILITIES
   ========================================================================== */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.gap-32 { gap: 32px !important; }

/* ==========================================================================  
   PREVENT ABSOLUTE POSITION ON CARDS & SPACING
   ========================================================================== */
.card, .card-content, .testimonial-card, .feature-item, .content-wrapper {
  position: relative;
  z-index: 1;
}

/* Prevent overlap */
.card, .testimonial-card, .feature-item, .content-wrapper, .footer-nav, .footer-contact, .footer-legal, .footer-social {
  margin-bottom: 20px;
}
/* Ensure space below last child is not excessive */
.card:last-child, .testimonial-card:last-child, .content-wrapper:last-child, .feature-item:last-child {
  margin-bottom: 0;
}

/* ==========================================================================  
   PRINT STYLES (OPTIONAL - REMOVE IF NOT NEEDED)
   ========================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0; }
}

/* ==========================================================================  
   END OF STYLE.CSS  
   ========================================================================== */
