/* 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #DFD3C3;
  color: #52392E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
::-webkit-input-placeholder { color: #75502F; opacity: 1; }
::-moz-placeholder { color: #75502F; opacity: 1; }
:-ms-input-placeholder { color: #75502F; opacity: 1; }
::placeholder { color: #75502F; opacity: 1; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;700&display=swap');

/* VINTAGE RETRO PALETTE */
:root {
  --primary: #52392E;
  --primary-dark: #342017;
  --secondary: #DFD3C3;
  --secondary-light: #f2ede7;
  --accent: #A17C5B;
  --accent-dark: #75502F;
  --beige: #F5EBD9;
  --yellow-soft: #f3c98b;
  --green-vintage: #7D9974;
  --retro-red: #D2695E;
  --white: #fff;
  --black: #23180e;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 var(--beige);
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 var(--secondary);
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}
p, ul, ol, li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--primary-dark);
  border-left: 4px solid var(--accent);
  background: var(--secondary-light);
  margin: 0 0 14px 0;
  padding: 18px 24px;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 2px 2px 12px 1px rgba(160, 124, 91, 0.06);
}
cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: var(--accent-dark);
  font-style: normal;
}
small, .small { font-size: 0.92rem; color: var(--accent); }
strong { font-weight: 700; color: var(--primary); }

/* BUTTONS */
.button,
.button.primary,
.button.accent {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--primary);
  padding: 12px 32px;
  font-size: 1rem;
  line-height: 1.1;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 2px 4px 10px 0 rgba(82, 57, 46, 0.08);
  cursor: pointer;
  margin: 0 12px 16px 0;
  background: var(--secondary);
  color: var(--primary);
}
.button.primary {
  background: var(--primary);
  color: var(--beige);
  border: 2px solid var(--primary-dark);
}
.button.primary:hover, .button.primary:focus {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent-dark);
  box-shadow: 2px 6px 22px 0 rgba(82, 57, 46, 0.19);
}
.button.accent {
  background: var(--accent);
  color: var(--beige);
  border-color: var(--accent-dark);
}
.button.accent:hover, .button.accent:focus {
  background: var(--retro-red);
  color: var(--white);
  border-color: var(--retro-red);
}
.button:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}
.button:focus { outline: 2px solid var(--accent-dark); }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(82, 57, 46, 0.04), 0 0px 0 1px var(--secondary-light);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--accent-dark);
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 2px 3px 24px 0 rgba(160, 124, 91, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
  margin-bottom: 20px;
  background: var(--secondary-light);
  border: 1.5px solid var(--accent-dark);
  border-radius: 14px;
  box-shadow: 1px 5px 22px 0 rgba(82, 57, 46, 0.10);
  flex-direction: column;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--beige);
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px dashed var(--accent);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

/* FLEXBOX UTILITIES */
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* HERO BANNER */
.hero {
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  background: repeating-linear-gradient(135deg, var(--yellow-soft), var(--beige) 100px, var(--yellow-soft) 200px);
  border-bottom: 4px dashed var(--accent);
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  text-shadow: 2px 4px 0 var(--secondary-light);
}
.hero .button {
  margin-top: 16px;
}

/* FEATURE/BENEFIT LISTS */
.features ul, .services-overview ul, .service-benefits ul, .about-story ul, .team-section ul, .philosophy ul, .style-guides ul, .trend-highlights ul, .decor-tips ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}
.features li, .services-overview li, .service-benefits li, .about-story li, .team-section li, .philosophy li, .style-guides li, .trend-highlights li, .decor-tips li, .contact-info-section ul li, .gdpr-info ul li, .user-rights-info ul li, .privacy-policy ul li, .terms-of-use ul li {
  position: relative;
  padding-left: 38px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.features li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px; height: 26px;
  background: var(--beige);
  border-radius: 6px;
  padding: 2px;
}

/* PRODUCT GRID (CATALOGO) */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  min-width: 240px;
  padding: 20px 18px;
  margin-right: 0;
  border-radius: 12px;
  background: var(--secondary-light);
  box-shadow: 0 2px 8px 1px rgba(117, 80, 47, 0.06);
  border: 1px solid var(--beige);
  transition: transform 0.15s;
}
.text-section:hover {
  transform: translateY(-6px) scale(1.025);
  background: var(--beige);
}
.text-section a {
  color: var(--retro-red);
  text-decoration: underline dotted;
  font-weight: 700;
  margin-top: 6px;
}
.text-section a:hover { color: var(--accent-dark); text-decoration: underline; }

.product-filters p {
  font-size: 1rem;
}
.product-filters a {
  color: var(--primary-dark);
  background: var(--beige);
  border-radius: 4px;
  padding: 3px 8px;
  margin: 0 6px;
  font-weight: bold;
  transition: background 0.14s;
}
.product-filters a:hover {
  background: var(--accent);
  color: var(--beige);
}

.catalog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.catalog-categories a {
  color: var(--primary);
  background: var(--secondary-light);
  border-radius: 7px;
  padding: 7px 18px;
  border: 1.5px solid var(--primary-dark);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  transition: background .14s, color .14s;
}
.catalog-categories a:hover { background: var(--accent); color: var(--beige); }

/* RATINGS SUMMARY */
.ratings-summary {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--yellow-soft);
  border-radius: 9px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px 0 rgba(243, 201, 139, 0.08);
  text-align: center;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup p {
  margin-bottom: 10px;
  color: var(--accent-dark);
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: var(--beige);
  padding: 42px 0 20px 0;
  margin-top: 48px;
  border-top: 5px dotted var(--accent);
  font-size: 1rem;
  box-shadow: 0 -2px 10px 0 rgba(115, 80, 47, 0.11);
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer img {
  width: 110px;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: var(--beige);
  opacity: 0.88;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color .12s, text-decoration .12s;
  text-decoration: underline dashed var(--accent);
}
.footer-menu a:hover { color: var(--accent); text-decoration: underline solid; }
.contact-info p, .contact-info a {
  color: var(--secondary-light);
  font-size: .97rem;
}

/* HEADER & NAVIGATION */
header {
  background: var(--beige);
  box-shadow: 0 4px 18px 0 rgba(82, 57, 46, 0.07);
  border-bottom: 4px double var(--accent);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 14px 20px;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 18px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background .14s, color .14s;
}
.main-nav ul a:hover, .main-nav ul a:focus {
  background: var(--accent-dark);
  color: var(--beige);
}

.main-nav .button {
  margin-left: 16px;
}

header img {
  width: 119px;
  margin-right: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--beige);
  font-size: 2.25rem;
  border-radius: 8px;
  padding: 4px 14px 7px 14px;
  border: 2px solid var(--accent-dark);
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 1011;
  cursor: pointer;
  transition: background .16s, box-shadow .16s;
  box-shadow: 0 2px 7px 0 rgba(117, 80, 47, 0.13);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-dark);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; 
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: var(--primary-dark);
  box-shadow: -8px 0 30px 0 rgba(82,57,46,.23);
  z-index: 2000;
  padding: 32px 32px 0 28px;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.83,.1,.31,1.31);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--beige);
  border: 0;
  font-size: 2rem;
  border-radius: 9px;
  padding: 3px 13px 2px 13px;
  cursor: pointer;
  margin-bottom: 22px;
  align-self: flex-end;
  box-shadow: 0 2px 8px 0 rgba(117,80,47,0.18);
  transition: background .10s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  outline: 2px solid var(--accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 22px;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav a {
  color: var(--beige);
  font-weight: 700;
  font-size: 1.18rem;
  padding: 12px 10px 10px 6px;
  border-radius: 8px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-red);
  color: #fff;
}

/* Hide main nav on mobile */
@media (max-width: 1024px) {
  .main-nav ul { gap: 12px; }
  .main-nav .button { margin-left: 6px; }
}
@media (max-width: 900px) {
  .main-nav ul, .main-nav .button { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .section, .container, .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .main-nav {
    flex-direction: row;
    padding: 12px 10px 12px 10px;
  }
  .hero h1 { font-size: 1.7rem; }
  .section { margin-bottom: 38px; padding: 28px 7px; }
  .product-grid { flex-direction: column; gap: 10px; }
  .card-container, .content-grid { gap: 10px; }
  .testimonial-card { max-width: 98vw; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .mobile-menu { width: 100vw; max-width: 100vw; padding-left: 7vw; padding-right: 3vw; }
}
@media (max-width: 550px) {
  h1, .h1 { font-size: 1.2rem; margin-bottom: 14px; }
  h2, .h2 { font-size: 1rem; margin-bottom: 10px; }
  h3, .h3 { font-size: .95rem; margin-bottom: 9px; }
  .main-nav img, footer img { width: 80px; }
  .button { font-size: 0.9rem; padding: 11px 14px; }
  .footer-menu { gap: 8px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: var(--yellow-soft);
  color: var(--primary-dark);
  border-top: 3px solid var(--accent-dark);
  box-shadow: 0 0 22px 0 rgba(160,124,91,0.09);
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 20px 18px;
  font-size: 1rem;
  animation: cookie-slidein 0.44s cubic-bezier(.21,1.02,.95,1.02);
}
@keyframes cookie-slidein {
  from { transform: translateY(105%); opacity: 0; }
  to { transform: translateY(0%); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 auto;
  color: var(--primary-dark);
  margin-right: 18px;
}
.cookie-banner .button {
  margin: 0 11px 0 0;
  box-shadow: 1px 2px 8px 0 rgba(117,80,47,0.11);
}
.cookie-banner .button.primary {
  background: var(--primary);
  color: var(--beige);
  border: none;
}
.cookie-banner .button.accent {
  background: var(--accent);
  color: var(--beige);
  border: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 8px 16px 8px;
  }
  .cookie-banner p { margin-right: 0; font-size: .95rem; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5001;
  background: rgba(34, 24, 14, 0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.24s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-radius: 18px;
  padding: 36px 28px 28px 28px;
  max-width: 98vw;
  width: 520px;
  box-shadow: 0 6px 33px 0 rgba(52, 32, 23, 0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-left: 3px;
}
.cookie-modal .cookie-category.essential input[type="checkbox"] { display: none; }
.cookie-modal .cookie-category.essential::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  margin-right: 9px;
  font-size: 1.18em;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .button { margin-bottom: 0; }
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  font-size: 1.65em;
  background: var(--accent);
  color: var(--beige);
  border-radius: 11px;
  padding: 4px 13px 5px 13px;
  border: 0;
  cursor: pointer;
  transition: background .12s;
}
.cookie-modal-close:hover { background: var(--retro-red); }
@media (max-width: 460px) {
  .cookie-modal { padding: 19px 7px; width: 96vw; }
  .cookie-modal h2 { font-size: 1.04rem; }
}

/* MODAL & OVERLAY ANIMATION UTILITIES */
.slide-in { animation: slide-in-right 0.3s cubic-bezier(.81,.01,.46,.81); }
@keyframes slide-in-right {
  from { transform: translateX(30vw); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* MICRO-INTERACTIONS */
.button,.catalog-categories a,.main-nav a,.footer-menu a,.text-section a,
.mobile-nav a,.mobile-menu-toggle,.mobile-menu-close {
  transition: background .16s, color .16s, border .16s, box-shadow .23s, transform .12s;
}
.card,.testimonial-card,.text-section {
  transition: box-shadow .17s, transform .13s;
}
.card:hover,.testimonial-card:hover,.text-section:hover {
  box-shadow: 0 9px 34px 1px rgba(115,80,47,0.19);
  transform: scale(1.01);
}

/* RETRO NOSTALGIC PATTERNS */
.section, .card, .testimonial-card, .product-grid, .footer-section, .header {
  background-image: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(243, 201, 139, 0.07) 42px, transparent 47px);
}

/* MISC UTILITIES */
::-webkit-scrollbar {
  width: 8px; background: var(--secondary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--accent); border-radius: 4px;
}

/* ACCESSIBILITY CONTRAST FIX FOR TESTIMONIALS */
.testimonials, .testimonial-card, .ratings-summary {
  background: var(--white);
  color: var(--primary-dark);
}
.testimonial-card blockquote,
.testimonial-card cite {
  color: #23180e;
}

/* SPECIAL SECTIONS OVERRIDES FOR RETRO LOOK */
.hero, .newsletter-signup, .ratings-summary, .catalog-categories a, .button.accent {
  box-shadow: 0 4px 28px 0 rgba(245, 235, 217, 0.15) !important;
}

/* FORMS & CONTACT INFO */
.form-privacy-notice {
  background: var(--beige);
  border-radius: 7px;
  padding: 10px;
  font-size: .98rem;
  color: var(--primary-dark);
  border: 1px dashed var(--accent);
  margin: 10px 0 12px 0;
}
input, textarea, select {
  background: var(--secondary-light);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  color: var(--primary-dark);
  width: 100%;
  margin-bottom: 16px;
  font-size: 1.03rem;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  background: var(--beige);
}

/* THANK YOU PAGE */
.thank-you {
  margin-top: 64px;
  margin-bottom: 60px;
  padding: 70px 14px;
  background: var(--beige);
  border-radius: 14px;
  box-shadow: 0 2px 22px 0 rgba(160, 124, 91, 0.09);
  text-align: center;
}
.thank-you h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}

/* PAGE/BLOCK STRUCTURES */
.about-story, .team-section, .philosophy, .gdpr-info, .privacy-policy, .terms-of-use, .cookie-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(115,80,47,0.07);
}
.next-steps-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 6px;
}

/* Z-INDEX ENFORCEMENT */
header, .main-nav { z-index: 1010; }
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index: 2000; }
.cookie-banner, .cookie-modal-overlay, .cookie-modal { z-index: 5000; }

/* SPACING AND ALIGNMENT ENFORCEMENT */
section, .section, .card, .testimonial-card, .feature-item, .text-section, .footer-section, .newsletter-signup {
  margin-bottom: 20px;
}

.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/****** END ******/