/* --------------------------
   CSS RESET & BASE STYLES
--------------------------- */
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, 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 {
  box-sizing: border-box;
  font-size: 16px;
  background: #F6F8FC;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2D2B2A;
  background: #F6F8FC;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #18569D;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #BF8F2B;
  outline: none;
}

/* ------- VINTAGE RETRO PALETTE & TYPOGRAPHY ------- */
:root {
  --primary: #16509E;
  --secondary: #F6F8FC;
  --accent: #F9C800;
  --highlight: #BF8F2B;
  --cream: #FFFDEF;
  --sienna: #984B43;
  --retro-teal: #317873;
  --retro-red: #D94F3A;
  --brown: #665146;
  --card-bg: #FFFDEF;
  --shadow: 0 3px 18px 0 rgba(43,32,10,0.09);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 2px 0 #BF8F2B22;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, td, th, span, em, strong, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2D2B2A;
}
blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  background: #FCF3D5;
  font-style: italic;
  color: var(--sienna);
  margin-bottom: 10px;
}
strong {
  color: var(--sienna);
}

/* -----------------
   GLOBAL CONTAINER
------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ------------------------------------
   NAVIGATION/BURGER MENU RETRO STYLES
--------------------------------------- */
header {
  background: var(--card-bg);
  box-shadow: 0 2px 16px rgba(35,23,2,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-wrap: wrap;
  height: 76px;
  background: transparent;
}
nav .logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 15px;
  padding: 8px 0;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
nav ul li {
  margin: 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0px #F6F8FC;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: var(--accent);
  color: var(--sienna) !important;
}
.cta-btn {
  background: var(--accent);
  color: var(--sienna);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 28px;
  border-radius: 40px;
  border: 2px solid var(--highlight);
  box-shadow: 0 2px 7px #F9C80055;
  margin-left: 22px;
  cursor: pointer;
  transition: background .15s, color .15s, transform .2s;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.70);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--highlight);
  color: #FFFDEF;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

/* HAMBURGER BUTTON (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: var(--highlight);
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  padding: 5px 20px 5px 5px;
  border-radius: 12px;
  margin-left: 10px;
  cursor: pointer;
  transition: background .15s;
  z-index: 1060;
  box-shadow: 0 1px 6px #bf8f2b30;
}
.mobile-menu-toggle:focus { outline: 2px dashed #984B43; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 92vw;
  max-width: 350px;
  height: 100vh;
  background: #FAEDD5;
  box-shadow: 0 0 60px 0 #2D2B2A50;
  z-index: 1200;
  transform: translateX(-120%);
  transition: transform .32s cubic-bezier(.46,.03,.52,.96);
  padding: 28px 32px 28px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #D94F3A;
  color: #FFFDEF;
  border: none;
  font-size: 2.1rem;
  border-radius: 25px;
  padding: 4px 18px 4px 8px;
  margin-bottom: 38px;
  cursor: pointer;
  box-shadow: 0 2px 6px #A9302E33;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #984B43;
  color: #FFFDEF;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #EEE6C8;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background .15s, color .1s;
  margin-bottom: 6px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--sienna);
  outline: none;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 13px;
  }
  .cta-btn {
    padding: 8px 20px;
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Show/hide based on mobile menu state (JS toggles .open) */
.mobile-menu {
  display: none;
}

/* Overlay for body when mobile menu open (optional, if implemented in html) */
body.menu-open {
  overflow: hidden;
}

/* ----------------------------------
  HOMEPAGE HERO & SECTIONS (RETRO)
-----------------------------------*/
main {
  min-height: 75vh;
}
.section,
.hero, .features, .services, .services_overview, .testimonials, .testimonials_preview, .guarantees, .cta_banner, .pricing, .about, .tips, .review_submission, .success_message, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 24px 24px 18px 18px;
  box-shadow: 0 4px 18px 0 #c2b59830;
  position: relative;
}
.hero {
  background: repeating-linear-gradient(45deg, #F9C800 0 16px, #FFFDEF 16px 32px);
  box-shadow: 0 5px 32px -10px #d94f3a22;
  border: 4px double var(--primary);
  padding-top: 54px;
  padding-bottom: 44px;
}
.hero .container { display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; }
.hero .content-wrapper {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
  max-width: 570px;
  margin-left: 16px;
}
.hero h1 {
  color: var(--sienna);
  font-size: 2.6rem;
  text-shadow: 1px 3px 0 #FCF3D5;
}
.hero p {
  font-size: 1.15rem;
  color: var(--brown);
  padding-bottom: 6px;
}

.features .container,
.services .container,
.services_overview .container,
.testimonials .container,
.pricing .container,
.about .container,
.legal .container,
.tips .container,
.contact .container {
  flex-direction: column;
}

/* Feature grid & cards */
.features .content-wrapper,
.services_overview .content-wrapper,
.services .content-wrapper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid li, .feature-list li {
  background: var(--card-bg);
  min-width: 220px;
  max-width: 320px;
  padding: 22px 16px 20px 18px;
  border-radius: 14px;
  box-shadow: 0 3px 12px #BF8F2B21, 0 1px 0 #FFE78A;
  border: 2px solid #D9CDB2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li img, .feature-list li img {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
}
.feature-grid li h3, .feature-list li strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  justify-content: flex-start;
}
.services-list li {
  background: #FFFDEF;
  border: 2px dashed #BF8F2B90;
  border-radius: 18px;
  box-shadow: 0 3px 10px 0 #D9CDB233;
  min-width: 230px;
  flex: 1 1 256px;
  padding: 20px 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.services-list li:hover, .feature-grid li:hover {
  box-shadow: 0 7px 24px 0 #F9C80039, 0 2px 16px #BF8F2B19;
  border-color: #F9C800;
  z-index: 2;
}
.services-list li img {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  filter: sepia(0.47) hue-rotate(-11deg) saturate(1.1);
}
.services-list li h2, .services-list li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--sienna);
  font-size: 1.25rem;
  font-weight: bold;
}
.service-price {
  display: inline-block;
  background: #F9C800;
  color: #984B43;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 1.03rem;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: .04em;
  box-shadow: 0 2px 6px #BF8F2B29;
}

/* --- Table Styling (Pricing) --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFDEF;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 15px #F9C80009;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  text-align: left;
  padding: 13px 22px;
  border-bottom: 1px solid #F9C80033;
}
.pricing-table th {
  color: #984B43;
  background: #F9C80044;
  letter-spacing: .04em;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*--------------------------------
  TESTIMONIALS / REVIEW CARDS
--------------------------------*/
.testimonials_preview .content-wrapper, .testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px 20px 22px;
  border-radius: 17px;
  background: #FFFDEF;
  box-shadow: 0 4px 20px 0 #BF8F2B14, 0 1px 0 var(--accent);
  min-width: 250px;
  max-width: 340px;
  border: 2px solid #D9CDB2;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.16s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 36px #EFCC3279, 0 4px 24px #16509E20;
  z-index: 2;
}
.testimonial-card blockquote {
  color: #6A5642;
  font-size: 1.19rem;
  line-height: 1.54;
  background: linear-gradient(88deg, #FCF4DB 90%, #FCF4DB52 100%);
}
.testimonial-card .star-rating {
  font-size: 1.2rem;
  color: #F9C800;
  letter-spacing: 4px;
  text-shadow: 1px 1px 0 #D9CDB2;
  margin-top: 2px;
  user-select: none;
}
.testimonial-card span {
  color: #984B43;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

/* CTA Banner */
.cta_banner {
  background: repeating-linear-gradient(-45deg,#F9C800 0 14px,#FFFDEF 14px 28px);
  border: 3px double #BF8F2B;
  box-shadow: 0 2px 22px #BF8F2B19;
  text-align: center;
  padding: 32px 18px;
  margin-top: 70px;
  margin-bottom: 60px;
  border-radius: 20px 20px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta_banner h2 {
  font-size: 2.0rem;
  color: #984B43;
  text-shadow: 1px 2px 0 #fffdf0cc, 1px 2px 2px #2d2b2a0c;
  margin-bottom: 0;
}

/* Review Submission/Special Section Styles */
.review_submission .content-wrapper, .success_message .content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section ul { margin-bottom: 14px; }
.text-section ul li {
  padding-bottom: 12px;
  font-size: 1rem;
}
.text-section h2, .text-section h3 {
  margin-top: 15px;
  margin-bottom: 8px;
}

/* Contact/Map Section */
.contact .map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FCF4DB;
  border: 1px solid #D9CDB2;
  padding: 17px 20px;
  border-radius: 13px;
}
.contact .map img {
  width: 38px;
  height: 38px;
}

/* Legal Pages */
.legal h2 {
  font-size: 1.26rem;
  color: #984B43;
  margin-bottom: 8px;
}
.legal ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* -------------------------------------------
  FOOTER - RETRO STYLE
--------------------------------------------*/
footer {
  background: #E6CF98;
  border-top: 6px dotted #F9C800;
  box-shadow: 0 -3px 28px 0 #D9CDB233;
  padding: 24px 0 18px 0;
  position: relative;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
  color: #3D2718;
  min-width: 260px;
}
.footer-info img {
  width: 112px;
  margin-bottom: 7px;
}
.footer-menu {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
  padding: 0;
  align-items: flex-end;
}
.footer-menu li {
  margin-bottom: 0;
}
.footer-menu a {
  color: #984B43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color .18s;
  border-bottom: 1px dashed #BF8F2B90;
  padding-bottom: 2px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--primary);
  border-bottom: 2px solid #F9C800;
}

/* -----------------------
   COOKIE BANNER & MODAL
-------------------------*/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1202;
  background: #FFFDEF;
  border: 3px solid #F9C800;
  border-radius: 18px;
  box-shadow: 0 4px 24px #BF8F2B44;
  padding: 19px 28px 17px 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  min-width: 320px;
  max-width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #665146;
  animation: cookieBannerIn .65s cubic-bezier(.41,1.55,.43,.98) both;
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px) translateX(-50%); opacity: 0; }
  to   { transform: translateY(0) translateX(-50%); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 180px;
  min-width: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn {
  border-radius: 30px;
  border: 2px solid var(--highlight);
  color: #665146;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #F9C800;
  padding: 7px 20px;
  font-size: 1rem;
  box-shadow: 0 2px 7px #F9C80033;
  margin-right: 0;
  transition: background .18s, color .17s, border .12s, box-shadow .18s;
  cursor: pointer;
}
.cookie-btn--accept {
  background: #BF8F2B;
  color: #FFFDEF;
  border-color: #F9C800;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #16509E;
  color: #FFFDEF;
}
.cookie-btn--reject {
  background: #F9C800;
  color: #984B43;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #D94F3A;
  color: #FFFDEF;
}
.cookie-btn--settings {
  background: #FFFDEF;
  color: #16509E;
  border: 1.5px dotted #BF8F2B;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #FCF4DB;
  color: #BF8F2B;
}

/* Cookie Modal Overlay and Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41,36,23,0.44);
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .32s cubic-bezier(.36,1.01,.32,.93);
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FFFDEF;
  border-radius: 21px;
  box-shadow: 0 14px 54px #984b4320, 0 6px 38px #16509E20;
  padding: 32px 40px 28px 32px;
  max-width: 99vw;
  width: 410px;
  min-width: 260px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 1905;
  animation: modalPop .45s cubic-bezier(.6,2,.58,.91);
}
@keyframes modalPop {
  from { transform: scale(0.85) translateY(80px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #984B43;
  font-weight: 700;
}
.cookie-modal__close {
  background: #D94F3A;
  color: #FFFDEF;
  border: none;
  font-size: 1.6rem;
  border-radius: 20px;
  padding: 2px 13px 2px 7px;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #984B43;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAEDD5;
  border-radius: 13px;
  padding: 11px 24px 11px 17px;
  font-size: 1rem;
  box-shadow: 0 1px 4px #BF8F2B19;
}
.cookie-category__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}
.cookie-category__desc {
  display: block;
  font-size: 0.95rem;
  color: #665146;
}
.cookie-toggle {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 18px;
  border-radius: 12px;
  background: #BF8F2B;
  position: relative;
  transition: background .18s;
  outline: none;
  cursor: pointer;
  border: 2px solid #F9C800;
}
.cookie-toggle:checked {
  background: #317873;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #FFFDEF;
  border-radius: 50%;
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  transition: left .19s;
  box-shadow: 0 2px 4px #984B4335;
}
.cookie-toggle:checked:before {
  left: 15px;
}
.cookie-category[data-essential] .cookie-toggle {
  background: #dddede !important;
  border-color: #dddede;
  cursor: default;
}
.cookie-category[data-essential] .cookie-toggle:before {
  background: #F9C800;
}
.cookie-category[data-essential] .cookie-toggle:checked {
  background: #dddede !important;
}

/* Cookie Modal Actions */
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ------------------------------
   FLEXBOX UTILITY AND STRUCTURE
---------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFDEF;
  border-radius: 18px;
  box-shadow: 0 2px 12px #98765117, 0 1px 0 #F9C80099;
  padding: 22px 16px;
}
.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;
}

/* ----------------------------------
   MICRO-INTERACTIONS/HOVERS
-----------------------------------*/
button, .cta-btn, .cookie-btn, .mobile-menu-close {
  transition: background .15s, color .11s, box-shadow .13s, transform .18s;
}
button:active, .cta-btn:active, .cookie-btn:active, .mobile-menu-close:active {
  transform: scale(.98);
}
.card:hover, .card:focus {
  box-shadow: 0 7px 28px #16509E1a, 0 1.5px 0 #F9C800;
}

/* ------------------------------
   VISUAL RETRO DETAILS, PATTERNS
-------------------------------*/
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -12px; left: -16px;
  width: 60px;
  height: 15px;
  background: repeating-linear-gradient(90deg,#EEE6C8 0 7px,#F9C800 7px 14px);
  opacity: 0.45;
  border-radius: 12px 10px 24px 15px;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -14px; bottom: -8px;
  width: 36px;
  height: 12px;
  background: repeating-linear-gradient(90deg,#D9CDB2 0 6px,#FFFDEF 6px 13px);
  opacity: 0.27;
  border-radius: 22px 14px 22px 18px;
  z-index: 0;
  pointer-events: none;
}

/* ------------------
   RESPONSIVE STYLES
--------------------*/
@media (max-width: 1025px) {
  .section, .hero, .features, .services, .services_overview, .testimonials, .testimonials_preview, .guarantees, .cta_banner, .pricing, .about, .tips, .review_submission, .success_message, .contact, .legal {
    padding: 30px 8px;
    margin-bottom: 35px;
  }
  .footer-info img {
    width: 80px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 7px;
    max-width: 98vw;
  }
  .footer-menu {
    flex-wrap: wrap;
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    margin-left: 0;
    padding: 0 3px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero {
    padding: 22px 4px 28px 4px;
  }
  .services-list, .feature-grid, .feature-list, .content-grid, .testimonials_preview .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .mobile-menu {
    width: 97vw;
    max-width: 100vw;
    padding: 12px 7vw 12px 2vw;
  }
  .footer-info {
    min-width: unset;
    font-size: .98rem;
  }
  .footer-info img {
    width: 60px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  /* Flex parser for stricter requirements */
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.03rem; }
  .cta-btn, .cookie-btn, .service-price { font-size: .98rem; padding-top:7px;padding-bottom:7px;}
  .cookie-banner { flex-direction: column; gap: 12px; padding:12px 9px 13px 9px;}
}

/* ----------- PRINT FRIENDLY -------- */
@media print {
  header, nav, .mobile-menu-toggle, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container { padding: 0 !important; }
  main { background: #fff !important; box-shadow: none !important; }
}
