/* ========================== 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background: #FAF5E6; /* Vintage cream */
  color: #2C3E50;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color .18s;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button {
  cursor: pointer;
}

/* ========================== COLOR & FONT VARIABLES ========================== */
:root {
  --cc-primary: #2C3E50;   /* brand primary */
  --cc-secondary: #7FB800; /* brand green */
  --cc-accent: #F2F2F2;    /* light accent */
  --cc-retro-cream: #F8E9C6;
  --cc-retro-pink: #E17377;
  --cc-retro-brown: #795548;
  --cc-retro-gold: #EFB45E;
  --cc-retro-blue: #6A9B9C;
  --cc-retro-orange: #DE8B2F;
  --cc-dark-text: #2C3E50;
  --cc-light-bg: #FFF8F2;
  --cc-accent2: #FFF5E1;
  --cc-white: #fff;
  --cc-shadow: 0 2px 16px rgba(44,62,80,0.08);
  --cc-radius: 14px;
  --cc-radius-sm: 7px;
  --cc-section-spacing: 60px;
  --cc-section-padding: 40px 20px;
  --cc-vintage-title: 'Montserrat', 'Arial Black', Georgia, serif;
  --cc-vintage-body: 'Roboto', 'Open Sans', Arial, sans-serif;
  --cc-vintage-retro: 'Fira Sans', 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ========================== TYPOGRAPHY ========================== */
body {
  font-family: var(--cc-vintage-body);
  font-size: 16px;
  color: var(--cc-dark-text);
  background: var(--cc-retro-cream);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--cc-vintage-title);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--cc-retro-brown);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 1px 1px 0 #fff5e1, 2px 2px 0 #EFB45E;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-shadow: 1px 1px 0 #FFF5E1, 2px 2px 0 #e1737730;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--cc-retro-brown);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
p, ul li, ol li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cc-dark-text);
}
strong {
  font-weight: 700;
  color: var(--cc-retro-orange);
}
em {
  color: var(--cc-retro-pink);
  background: #fff8f2;
  border-radius: var(--cc-radius-sm);
  padding: 0 6px;
}

/* ========================== LAYOUT CONTAINERS ========================== */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--cc-section-bg, var(--cc-light-bg));
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  /* Nostalgic subtle dotted pattern */
  background-image:
    repeating-linear-gradient(135deg, #faebd744 0 2px, transparent 2px 24px);
}
section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--cc-accent2);
  border: 2px solid var(--cc-retro-gold);
  box-shadow: var(--cc-shadow);
  border-radius: var(--cc-radius);
  padding: 26px 22px;
  position: relative;
  transition: box-shadow .2s, transform .18s;
  min-width: 240px;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 4px 24px #EFB45E90, 0 2px 16px #79554833;
  transform: translateY(-4px) scale(1.016);
}

.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;
  background: var(--cc-light-bg);
  border: 2px solid var(--cc-retro-blue);
  box-shadow: 0 2px 16px #6A9B9C18;
  margin-bottom: 24px;
  border-radius: var(--cc-radius-sm);
  color: var(--cc-dark-text);
  position: relative;
  min-width: 220px;
  font-family: var(--cc-vintage-body);
}
.testimonial-card blockquote {
  font-family: var(--cc-vintage-title);
  color: var(--cc-retro-brown);
  font-size: 1.18rem;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 14px 0;
}
.testimonial-card strong {
  color: var(--cc-retro-brown);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List icons (features, resources, benefits etc.) */
.features ul, .about-features ul, .services-benefits ul, .study-resources ul, .lingue-features ul, .corsi-insights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.features ul li, .about-features ul li, .services-benefits ul li, .study-resources ul li, .lingue-features ul li, .corsi-insights ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  background: var(--cc-retro-cream);
  border: 1.5px solid var(--cc-retro-gold);
  padding: 13px 17px;
  border-radius: var(--cc-radius-sm);
  font-size: 1rem;
  box-shadow: 0 1px 8px #EFB45E22;
  transition: background .16s, border .16s;
}
.features ul li:hover, .about-features ul li:hover,
.services-benefits ul li:hover, .study-resources ul li:hover {
  background: var(--cc-retro-gold);
  border-color: var(--cc-retro-pink);
}
.features ul li img, .about-features ul li img,
.services-benefits ul li img, .study-resources ul li img, .lingue-features ul li img, .corsi-insights ul li img {
  width: 32px;
  height: 32px;
}
.lingue-features ul, .corsi-insights ul {
  gap: 13px;
}

.text-section {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 14px;
  padding-left: 0;
}
.text-section ul li, .text-section ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 16px;
}
.text-section ul li:before {
  content: '\25B6';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: .85em;
  color: var(--cc-retro-gold);
}
.text-section ol {
  list-style-type: decimal;
}
.text-section ol li {
  padding-left: 0;
}
.text-section ol li:before {
  display: none;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-list > div {
  background: var(--cc-accent2);
  border: 2px solid var(--cc-retro-brown);
  border-radius: var(--cc-radius-sm);
  padding: 26px 18px 18px 18px;
  min-width: 260px;
  flex: 1 1 320px;
  box-shadow: 0 2px 12px #2C3E5022;
  transition: box-shadow .18s, transform .16s;
  margin-bottom: 18px;
}
.service-list > div:hover {
  box-shadow: 0 6px 24px #7FB80030;
  transform: translateY(-2px) scale(1.015);
}

/* ========================== HEADER, NAV, FOOTER ========================== */
header {
  background: var(--cc-retro-blue);
  padding: 0;
  box-shadow: 0 1px 10px #6A9B9C18;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  position: relative;
}
.logo img {
  max-height: 54px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-family: var(--cc-vintage-retro);
}
nav a {
  font-size: 1rem;
  color: var(--cc-retro-cream);
  padding: 8px 7px;
  border-radius: 3px;
  transition: background .18s, color .18s;
  position: relative;
}
nav a:hover,
nav a:focus {
  background: var(--cc-retro-gold);
  color: var(--cc-retro-brown);
}
.cta-btn {
  font-family: var(--cc-vintage-title);
  font-size: 1.08rem;
  border-radius: 30px;
  background: var(--cc-retro-gold);
  color: var(--cc-dark-text);
  padding: 12px 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px #EFB45E44;
  border: 2px solid var(--cc-retro-orange);
  margin-left: 18px;
  transition: background .18s, color .16s, border .16s, transform .16s;
  position: relative;
}
.cta-primary {
  background: var(--cc-retro-pink);
  color: var(--cc-white);
  border-color: var(--cc-retro-brown);
  box-shadow: 0 2px 18px #E1737750;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--cc-retro-brown);
  color: var(--cc-retro-gold);
  border-color: var(--cc-retro-gold);
  transform: translateY(-2px) scale(1.025);
}

footer {
  background: var(--cc-retro-brown);
  color: var(--cc-retro-cream);
  padding: 34px 0 22px 0;
  font-size: .97rem;
  box-shadow: 0 -2px 16px #79554818;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
footer nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--cc-retro-gold);
}
footer nav a {
  color: var(--cc-retro-gold);
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 5px;
  transition: background .14s, color .14s;
}
footer nav a:hover {
  background: var(--cc-retro-pink);
  color: var(--cc-white);
}
footer .text-section {
  color: var(--cc-accent2);
  font-size: .9em;
  margin-top: 7px;
  text-align: center;
}

/* ========================== HERO SECTIONS ========================== */
.hero, .study-tips-hero, .lingue-hero, .corsi-hero, .contatti-hero, .thankyou-section, .about-story {
  background: linear-gradient(110deg, #F8E9C6 85%, #FFF5E1 100%);
  box-shadow: 0 2px 20px #F8E9C655;
  border-radius: 0 0 var(--cc-radius) var(--cc-radius);
  margin-bottom: 48px;
  padding: 60px 20px 48px 20px;
  display: flex;
  align-items: flex-end;
}
.hero h1, .study-tips-hero h1, .lingue-hero h1, .corsi-hero h1, .contatti-hero h1, .thankyou-section h1, .about-story h1 {
  color: var(--cc-retro-brown);
  font-size: 2.6rem;
}
.hero .cta-btn, .study-tips-hero .cta-btn {
  margin-top: 10px;
}

/* ========================== CTA SECTIONS ========================== */
.cta, .thankyou-section {
  background: var(--cc-retro-gold);
  color: var(--cc-retro-brown);
  border-radius: var(--cc-radius);
  box-shadow: 0 2px 16px #EFB45E33;
  margin-bottom: 54px;
}
.cta h2, .thankyou-section h1 {
  color: var(--cc-retro-brown);
}
.cta .cta-btn, .thankyou-section .cta-btn {
  margin-top: 18px;
}

/* ========================== UTILITY & RESPONSIVE ========================== */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .service-list, .features ul, .about-features ul, .services-benefits ul {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .container {
    padding: 0 9px;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 11px;
  }
  .section, section {
    margin-bottom: 46px;
    padding: 22px 7px;
    border-radius: 7px;
  }
  .service-list > div, .card {
    min-width: unset;
    padding: 14px 8px;
    font-size: .96em;
  }
  .hero, .study-tips-hero, .lingue-hero, .corsi-hero, .contatti-hero, .thankyou-section, .about-story {
    padding: 34px 9px 24px 9px;
    margin-bottom: 32px;
    min-height: unset;
  }
  .features ul, .about-features ul, .services-benefits ul, .study-resources ul, .lingue-features ul, .corsi-insights ul {
    gap: 7px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px 8px;
    min-width: unset;
  }
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.28rem;
  }
}

/* ========================== MOBILE NAVBURGER & MENU ========================== */
.mobile-menu-toggle {
  display: none;
  background: var(--cc-retro-gold);
  color: var(--cc-retro-brown);
  font-size: 2.2rem;
  line-height: 45px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cc-retro-brown);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
  transition: background .18s, color .18s, border .16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--cc-retro-pink);
  color: #fff;
  border-color: var(--cc-retro-gold);
}
@media (max-width: 930px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 18px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--cc-retro-cream);
  box-shadow: 0 8px 28px #EFB45E66, 0 8px 60px #79554833;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.79,-0.01,.21,1.18);
  z-index: 9999;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: var(--cc-retro-brown);
  background: var(--cc-retro-gold);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  border: 2px solid var(--cc-retro-brown);
  transition: background .14s, color .14s, border .10s;
  z-index: 100;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--cc-retro-pink);
  color: #fff;
  border-color: var(--cc-retro-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  padding: 17px 18px;
  font-size: 1.23rem;
  border-radius: 14px;
  background: var(--cc-retro-cream);
  color: var(--cc-retro-brown);
  font-family: var(--cc-vintage-title);
  border: 2px solid var(--cc-retro-gold);
  transition: background .13s, color .13s, border .10s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--cc-retro-pink);
  color: #fff;
  border: 2px solid var(--cc-retro-pink);
}

/* ================== COOKIE CONSENT BANNER & MODAL ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--cc-retro-brown);
  color: var(--cc-retro-cream);
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 17px 22px;
  gap: 24px;
  box-shadow: 0 -2px 24px #79554844;
  font-size: 1rem;
  animation: cc-fadein .6s;
}
@keyframes cc-fadein {
  0% {
    opacity: 0;
    transform: translateY(56px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1rem;
  font-family: var(--cc-vintage-body);
}
.cookie-buttons {
  display: flex;
  gap: 13px;
  flex: 0 0 auto;
}
.cookie-btn {
  font-family: var(--cc-vintage-title);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 19px;
  border: none;
  background: var(--cc-retro-gold);
  color: var(--cc-retro-brown);
  box-shadow: 0 1px 8px #EFB45E99;
  font-size: 1.01rem;
  transition: background .15s, color .15s, transform .1s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--cc-retro-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--cc-retro-blue);
  color: var(--cc-retro-cream);
}
.cookie-btn.settings:hover {
  background: var(--cc-retro-brown);
  color: var(--cc-retro-gold);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 100000;
  background: #2C3E5075;
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.show {
  display: flex;
  animation: cc-fadein .4s;
}
.cookie-modal {
  background: var(--cc-accent2);
  padding: 38px 32px 26px 32px;
  min-width: 310px;
  max-width: 340px;
  border-radius: var(--cc-radius);
  box-shadow: 0 6px 32px #EFB45EBB, 0 2px 14px #79554833;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--cc-retro-brown);
  font-family: var(--cc-vintage-title);
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--cc-retro-blue);
  width: 21px; height: 21px;
}
.cookie-category .toggle {
  width: 38px; height: 21px;
  border: 2px solid var(--cc-retro-brown);
  background: #fff;
  border-radius: 12px;
  transition: background .14s, border .14s;
  position: relative;
  margin-right: 9px;
}
.cookie-category .toggle.checked {
  background: var(--cc-retro-gold);
  border-color: var(--cc-retro-blue);
}
.cookie-category .toggle::after {
  content: '';
  display: block;
  width: 17px; height: 17px;
  background: var(--cc-retro-brown);
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1px;
  transition: left .2s;
}
.cookie-category .toggle.checked::after {
  background: var(--cc-retro-blue);
  left: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  font-size: 1.3rem;
  background: var(--cc-retro-pink);
  color: #fff;
  border: none;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--cc-retro-gold);
  color: var(--cc-retro-brown);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: .96rem;
    padding: 14px 9px;
  }
  .cookie-modal {
    min-width: 90vw;
    max-width: 97vw;
    padding: 18px 7px 18px 14px;
  }
}

/* =========== MICRO-INTERACTIONS & ANIMATIONS =========== */
.card, .service-list > div {
  transition: box-shadow .19s, transform .13s;
}
.card:active, .service-list > div:active {
  box-shadow: 0 1px 4px #E17377cc;
  transform: scale(.99);
}
.cta-btn:active, .cookie-btn:active {
  box-shadow: 0 1px 4px #2C3E5088;
  transform: scale(.99);
}
.testimonial-card {
  transition: box-shadow .2s, border .19s, transform .1s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px #6A9B9C42, 0 2px 20px #EFB45E55;
  border-color: var(--cc-retro-gold);
  transform: translateY(-3px) scale(1.012);
}

/* =========== CUSTOM SCROLLBAR FOR VINTAGE TOUCH =========== */
::-webkit-scrollbar {
  width: 12px;
  background: var(--cc-retro-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--cc-retro-brown);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cc-retro-gold);
}

/* =========== FOCUS VISIBLE =========== */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px dashed var(--cc-retro-brown);
  outline-offset: 3px;
}

/* =========== MISC =========== */
hr {
  border: none;
  border-top: 1.5px dashed var(--cc-retro-brown);
  margin: 30px 0;
}
blockquote {
  border-left: 6px solid var(--cc-retro-gold);
  background: #fff6e7;
  padding: 18px 28px;
  margin-bottom: 16px;
  font-style: italic;
  color: var(--cc-retro-brown);
}

/* ======== FORMS (USED IN CONTATTI, ETC) ======== */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
input[type="text"], input[type="email"], textarea {
  padding: 11px 13px;
  font-size: 1rem;
  font-family: var(--cc-vintage-body);
  border-radius: var(--cc-radius-sm);
  border: 1.5px solid var(--cc-retro-gold);
  background: var(--cc-accent2);
  transition: border .14s, box-shadow .14s;
}
input:focus, textarea:focus {
  border: 2px solid var(--cc-retro-pink);
  box-shadow: 0 2px 9px #e1737777;
}
label {
  font-family: var(--cc-vintage-title);
  color: var(--cc-retro-brown);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ========== PAGE-SPECIFIC CLASSES FOR LAYOUT CONSISTENCY ========== */
.about-story, .about-features, .about-team,
.study-tips-hero, .study-tips-list, .study-resources,
.lingue-hero, .lingue-features, .lingue-workshops,
.corsi-hero, .corsi-list, .corsi-insights,
.contatti-hero, .contatti-info, .opening-hours, .faq, .thankyou-section,
.policy-privacy, .policy-gdpr, .policy-cookies, .policy-terms {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--cc-radius);
  background: var(--cc-light-bg);
  box-shadow: var(--cc-shadow);
}

/* ========== ENSURE NO OVERLAPS & FLEX LAYOUTS ========== */
.section, section, .container, .content-wrapper,
.card-container, .card, .card-content, .service-list, .content-grid, .text-image-section {
  box-sizing: border-box;
}
.section:not(:last-child), section:not(:last-child) {
  margin-bottom: 60px;
}
.card-container, .service-list, .content-grid, .text-image-section {
  gap: 20px;
}
.card:not(:last-child), .service-list > div:not(:last-child) {
  margin-bottom: 20px;
}

/* ========== PRINT (PREVENT MENUS & BANNERS) ========== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  .container, .section, section {
    box-shadow: none;
    background: #fff !important;
    color: #222;
  }
}
