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

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #F9F7F4;
  color: #20303C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #194569;
  text-decoration: none;
  transition: color .2s;
}

a:hover,
a:focus {
  color: #B65918;
  outline: none;
}

ul, ol {
  margin-left: 1.2em;
  padding-left: 0.8em;
}

/* ========================= VINTAGE RETRO STYLE ========================= */
:root {
  --color-primary: #194569;
  --color-secondary: #FFD600;
  --color-accent: #F6F7F9;
  --color-bg: #F9F7F4;
  --color-headline: #2D1706;
  --color-card: #FFF8EB;
  --color-shadow: rgba(51, 34, 0, 0.11);
  --color-cta: #EE7A33;
  --color-cta-hover: #B65918;
  --color-border: #E6D6BA;
  --color-dark: #46290C;
  --color-focus: #FFD600;
  --color-testimonial-bg: #FFF4CA;
  --color-testimonial-text: #231F20;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--color-headline);
  letter-spacing: -0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.18; margin-bottom: 18px; font-weight: 700; }
h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 16px; font-weight: 700; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.08rem; margin-bottom: 8px; font-weight: 500; }

p, ul, ol, li, table, th, td {
  font-family: 'Roboto', Verdana, Arial, sans-serif;
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 14px;
}

.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B65918;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

/* Vintage fonts and effects */
h1, h2, .cta-btn {
  text-shadow: 1px 1px 0px #FFD60022, 0px 2px 4px #F9D98970;
}

/* Decorative borders and edges for classic style */
.section, section:not(.hero):not(.cta-section) {
  background: linear-gradient(135deg, #FFF8EB 91%, #E8D3B0 100%);
  border: 1px solid var(--color-border);
  border-radius: 26px 44px 36px 34px/38px 30px 36px 41px;
  box-shadow: 0 8px 28px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.text-section {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* ========================= HEADER & NAVIGATION ========================= */
header {
  background: var(--color-primary);
  box-shadow: 0 2px 16px #1a232b15;
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  flex: 1;
}
.main-nav > a img {
  height: 40px;
  margin-right: 22px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  padding: 7px 8px;
  border-radius: 12px;
  transition: background .2s, color .2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 2px 14px #FFD60038;
}
.cta-btn {
  background: var(--color-cta);
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 25px 30px 20px 34px/24px 22px 30px 28px;
  box-shadow: 0 4px 16px #B6591840, 0 1.5px 0 #FFD60033;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-align: center;
  margin-left: 18px;
  transition: background .2s, color .2s, box-shadow .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-cta-hover);
  color: var(--color-secondary);
  box-shadow: 0 6px 28px #B6591870;
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Hamburger/Burger Icon */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 18px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
  box-shadow: 0 2px 10px #FFD60028;
  cursor: pointer;
  z-index: 160;
  transition: background .2s, color .2s, box-shadow .2s;
}
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ========================= MOBILE MENU ========================= */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: #FFF8EBCC;
  box-shadow: 0 12px 90px #803F0E33;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .38s cubic-bezier(.72,.1,.11,1), opacity .23s;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2020;
  box-shadow: 0 2px 6px #FFD60033;
  transition: background .2s, color .2s;
}
.mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 36px 48px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-headline);
  font-weight: 700;
  font-size: 1.22rem;
  padding: 15px 0;
  border-bottom: 1.5px solid #E8D3B0;
  transition: background .2s, color .2s;
  width: 100%;
  text-align: left;
  display: block;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-cta);
  background: #FFD60010;
  outline: none;
}

/* Hide main nav & show burger menu on mobile */
@media (max-width: 1024px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================= HERO SECTION ========================= */
.hero {
  background: linear-gradient(120deg, #FFEEC2 20%, #F9F7F4 70%);
  padding: 48px 0 40px 0;
  margin-bottom: 0 !important;
}
.hero .container {
  min-height: 240px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 17px;
  padding: 12px 0 6px 0;
}

/* ========================= FEATURES ========================= */
.features {
  background: #FFF8EB;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0 0 0;
  width: 100%;
}
.features .feature-grid > div {
  background: #FFF4CA;
  border: 1.5px solid #E6D6BA;
  border-radius: 30px 16px 35px 22px/18px 28px 40px 30px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 335px;
  padding: 24px 22px 18px 22px;
  box-shadow: 0 4px 18px #FFD60015, 0 6px 24px #77502813;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform .21s cubic-bezier(.72,.1,.11,1), box-shadow .18s;
  position: relative;
}
.features .feature-grid > div:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 10px 32px #B6591822, 0 2px 18px #FFD60038;
}
.features .feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
  filter: grayscale(25%) sepia(17%) contrast(1.1);
}
.features .feature-grid h3 {
  color: var(--color-primary);
  font-size: 1.22rem;
}
.features .feature-grid p {
  color: #5A4732;
  font-size: .98rem;
}

/* ========================= TESTIMONIALS ========================= */
.testimonials {
  background: #FFFBEC;
}
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}
.testimonial-card {
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border: 1.3px solid #E3C888;
  border-radius: 24px 16px 22px 28px/30px 20px 36px 25px;
  box-shadow: 0 4px 17px #E3C88840, 0 3px 12px #BA8D2F13;
  padding: 20px 28px;
  min-width: 265px; max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.11rem;
  position: relative;
  transition: box-shadow .16s;
}
.testimonial-card p {
  color: #2D1706;
  font-size: 1.12rem;
  font-family: 'Roboto', serif;
}
.testimonial-card span {
  font-size: .97rem;
  color: #7E6B41;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  align-self: flex-end;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Times New Roman', serif;
  font-size: 3.4rem;
  color: #B65918;
  position: absolute;
  top: 8px;
  left: 16px;
  opacity: .34;
}
.testimonial-card:after {
  content: '\201D';
  font-family: 'Times New Roman', serif;
  font-size: 2.6rem;
  color: #FFD600;
  position: absolute;
  bottom: 12px;
  right: 18px;
  opacity: .28;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px #FFD60048, 0 3px 16px #B6591815;
}

/* ========================= CTA (Call to Action) SECTION ========================= */
.cta-section {
  background: linear-gradient(101deg, #FFD600 90%, #FFF4CA 100%);
  box-shadow: 0 2px 24px #FFD60019;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px 22px 32px 28px/22px 38px 26px 32px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.cta-section .cta-btn {
  margin-left: 0;
  margin-top: 18px;
  box-shadow: 0 6px 21px #B6591850, 0 1.5px 0 #FFD60063;
}

/* ========================= SERVICES (dienstleistungen) ========================= */
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin-top: 26px;
}
.services-list ul li {
  background: #FFF4CA;
  border: 1.2px solid #E6D6BA;
  border-radius: 30px 18px 38px 26px/19px 23px 33px 24px;
  flex: 1 1 255px;
  min-width: 255px;
  max-width: 340px;
  padding: 24px 21px 18px 21px;
  box-shadow: 0 2px 18px #FFD60012, 0 5px 18px #77502810;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: transform .18s;
}
.services-list ul li:hover {
  transform: translateY(-5px) scale(1.02) rotate(-0.9deg);
  box-shadow: 0 7px 26px #B6591825, 0 2px 14px #FFD60018;
}
.services-list ul li img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: grayscale(12%) sepia(15%) contrast(1.05);
}
.services-list ul li h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
}
.services-list ul li p {
  color: #56380A;
  font-size: .97rem;
}
.service-price {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 20px 12px 10px 30px/16px 18px 18px 14px;
  padding: 9px 19px;
  margin-top: 10px;
  align-self: flex-end;
  box-shadow: 0 2px 10px #FFD60025;
}

/* ========================= PRICING (preise) TABLE ========================= */
.pricing table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 26px;
  background: #FFF8EB;
  border-radius: 18px;
  box-shadow: 0 2px 16px #FFD60016;
  overflow: hidden;
}
.pricing th, .pricing td {
  text-align: left;
  font-size: 1rem;
  padding: 13px 12px;
  border-bottom: 1.25px solid #E3C888;
}
.pricing th {
  background: #FFD600;
  color: var(--color-primary);
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing tr:last-child td {
  border-bottom: none;
}
.pricing-notes ul {
  list-style: disc inside;
  font-size: 0.98rem;
  color: #856c29;
}

/* ========================= FAQ ========================= */
.faq-section {
  background: #FFF8EB;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-bottom: 0 !important;
  padding: 12px 0 2px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-accordion p {
  padding-bottom: 10px;
  color: #513E16;
  font-size: .99rem;
}
.faq-contacthint {
  margin-top: 20px;
  font-size: 1rem;
  color: #B65918;
  background: #FFFBEB;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px dashed #FFD60088;
}

/* ========================= ABOUT US, LEGAL and CONTACT ========================= */
.legal-section, .kontakt-section {
  background: #FFF8EB;
}
.legal-section a, .kontakt-section a {
  color: #B65918;
  text-decoration: underline dotted;
  transition: color .2s;
}
.legal-section a:hover, .kontakt-section a:hover { color: #E59543; text-decoration: underline; }
.text-section ul {
  list-style: disc inside;
  color: #5A4732;
}
.text-section ul li {
  margin: 6px 0 8px 0;
  font-size: .98rem;
}
.kontakt-section .cta {
  margin: 17px 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* ========================= ABLAUF STEPS ========================= */
.ablauf-steps ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  counter-reset: step;
  margin-top: 24px;
  padding: 0;
}
.ablauf-steps ol li {
  display: flex;
  align-items: flex-start;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  padding: 19px 17px 17px 17px;
  background: #FFF4CA;
  border: 1.3px solid #E6D6BA;
  border-radius: 32px 20px 36px 20px/19px 24px 32px 22px;
  box-shadow: 0 3px 18px #FFD60010;
  margin-bottom: 20px;
  font-size: 1.00rem;
  position: relative;
  gap: 13px;
}
.ablauf-steps ol li img {
  height: 39px;
  width: 39px;
  margin-right: 10px;
  flex-shrink: 0;
}
.ablauf-steps ol li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  margin-right: 3px;
}

/* ========================= FOOTER ========================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 14px 0;
  margin-top: 40px;
  font-size: .97rem;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF4CA;
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
}
.footer-info img {
  height: 46px;
  width: auto;
}
.footer-info p {
  color: #FFF7E2;
  font-size: .97rem;
  line-height: 1.5;
}

/* ========================= COOKIE CONSENT BANNER ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #FFF8EB;
  border-top: 2.5px solid #FFD600;
  box-shadow: 0 -2px 24px #FFD60018;
  padding: 22px 24px;
  font-size: .99rem;
  z-index: 2500;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .26s, transform .36s;
  gap: 17px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-text {
  max-width: 510px;
  color: #513E16;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  padding: 10px 22px;
  border-radius: 16px 11px 19px 11px/13px 19px 13px 17px;
  cursor: pointer;
  transition: background .17s, color .17s;
  box-shadow: 0 2px 10px #FFD60022;
}
.cookie-btn.accept {
  background: var(--color-cta);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-cta-hover);
  color: var(--color-secondary);
}
.cookie-btn.settings {
  background: #FFFBEB;
}
.cookie-btn.reject {
  background: var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-cta-hover);
  color: #FFD600;
  outline: 0;
}

/* Cookie settings modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: #46290C66;
  z-index: 2510;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
  animation: fadeIn .26s;
}
@keyframes fadeIn {
  from { opacity: 0; } 
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF8EB;
  border-radius: 24px 16px 36px 24px/36px 22px 32px 17px;
  box-shadow: 0 12px 40px #FFD60066;
  min-width: 315px;
  max-width: 98vw;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn .34s;
}
@keyframes modalIn {
  from { transform: translateY(48px) scale(0.9); opacity: 0; } 
  to   { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 35px; height: 35px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px #FFD60033;
}
.cookie-modal h2 {
  font-size: 1.14rem;
  text-align: left;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #FFFBEB;
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid #FFD60044;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 1.10em;
  height: 1.10em;
  margin-right: 7px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category.essential label {
  color: #C8A930;
  cursor: default;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 5px;
}

/* ========================= MEDIA QUERIES & RESPONSIVENESS ========================= */
@media (max-width: 1024px) {
  .features .feature-grid, .services-list ul, .ablauf-steps ol, .testimonials .testimonial-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  .section, section:not(.hero):not(.cta-section), .cta-section {
    padding: 28px 9px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-section {
    max-width: 100%;
    padding: 0 2px;
  }
  .features .feature-grid > div, .services-list ul li, .ablauf-steps ol li, .testimonial-card {
    min-width: 0; max-width: 100%;
    border-radius: 22px;
    padding: 16px 10px;
  }
  .main-nav > a img, .footer-info img {
    height: 28px !important;
  }
  .footer-info, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.01rem; }
  .hero {
    padding: 20px 0 12px 0;
  }
  .footer-info img {
    height: 22px !important;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: .98rem;
    padding: 13px 8px 18px 8px;
    text-align: center;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 7px;
  }
}

/* ========== MANDATORY FLEXBOX SPACING AND ALIGNMENT =========== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 20px; background: #FFF4CA; box-shadow: 0 3px 18px #FFD60018; }
.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; }
/* Responsive for text-image and feature layouts */
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ======================= MICRO-INTERACTIONS & EFFECTS ======================= */
.cta-btn, .service-price, .cookie-btn, .mobile-menu-toggle, .main-nav ul li a, .mobile-nav a {
  transition: background .16s, color .16s, box-shadow .13s, transform .13s;
}
.cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}
.main-nav ul li a:active, .mobile-nav a:active {
  transform: scale(0.99);
}

/* ======================== CUSTOM SCROLLBAR FOR RETRO LOOK =================== */
::-webkit-scrollbar {
  width: 9px;
  background: #FFFBEB;
}
::-webkit-scrollbar-thumb {
  background: #FFD60099;
  border-radius: 8px;
}

/* ======================== FOCUS STATES FOR ACCESSIBILITY ===================== */
a:focus, button:focus, .cookie-btn:focus, .cta-btn:focus, .main-nav ul li a:focus {
  outline: 2.5px dashed #FFD600;
  outline-offset: 2px;
}

/* ======================== PRINT STYLES ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  html, body, main { background: #fff !important; color: #000 !important; }
}
