/* ===================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #F9F5F1;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #23395B;
  background: #FEF7EA;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
ul, ol {
  margin-left: 1.2em;
  padding-left: 0.8em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #A76336;
  text-decoration: underline;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #e37628;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
input, textarea {
  font-family: inherit;
}

/* ==========================
   VINTAGE RETRO BRAND COLORS & FONTS
   ========================== */
:root {
  --brand-primary: #23395B;
  --brand-secondary: #F2F2F2;
  --brand-accent: #3BB273;

  /* Vintage Palette */
  --retro-navy: #23395B;
  --retro-light: #FAF3E4;
  --retro-cream: #FFF8E1;
  --retro-orange: #F49A49;
  --retro-brown: #A76336;
  --retro-green: #26895A;
  --retro-yellow: #FBE38D;
  --retro-red: #CF5254;
  --retro-muted-blue: #6C88A6;
  --retro-shadow: rgba(164, 99, 54, 0.11);
  --retro-border: #EBD1AD;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #A76336;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
@media (min-width: 700px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}
p, ul, ol, blockquote, cite {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #23395B;
}
strong {
  color: #A76336;
  font-weight: 700;
}

blockquote {
  background: var(--retro-yellow);
  border-left: 6px solid var(--retro-orange);
  padding: 18px 24px;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-radius: 8px 30px 30px 8px;
}
cite {
  display: block;
  font-size: 1rem;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--retro-brown);
}

hr {
  margin: 32px 0;
  border: 0;
  border-top: 2px dotted var(--retro-orange);
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 700px) {
  .container { padding: 0 12px; }
  .section, section { padding: 30px 0 30px 0; }
  .content-wrapper { gap: 16px; }
}

/* ==========================
   NAVIGATION & HEADER
   ========================== */
.main-header {
  background: var(--retro-navy);
  border-bottom: 6px solid var(--retro-orange);
  padding: 0;
  position: sticky;
  top: 0; left:0; right:0;
  z-index: 50;
  box-shadow: 0px 8px 32px -12px var(--retro-shadow);
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 14px;
  padding: 0 28px;
}
.logo-link img {
  max-height: 54px;
  filter: drop-shadow(0 1px 0 #EBD1AD);
  padding: 7px 0;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.015em;
  color: var(--retro-yellow);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.23s;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.main-nav .cta-btn {
  background: var(--retro-orange);
  color: var(--retro-navy) !important;
  padding: 12px 25px;
  border: none;
  border-radius: 21px;
  box-shadow: 0 5px 20px -5px var(--retro-shadow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.03rem;
  margin-left: 14px;
  transition: background 0.16s, color 0.25s, box-shadow 0.2s;
  outline: 2px solid transparent;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown) !important;
  box-shadow: 0 9px 28px -5px var(--retro-shadow);
  outline: 2px solid var(--retro-brown);
}

/* ====== MOBILE HEADER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--retro-navy);
  border-radius: 7px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border: 2px solid var(--retro-border);
  transition: box-shadow 0.18s, background 0.18s;
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-cream);
  box-shadow: 0 0 32px 0 var(--retro-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.82,0,0.23,1);
  z-index: 9999;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 22px 0 auto;
  font-size: 2.2rem;
  background: var(--retro-orange);
  color: var(--retro-navy);
  border-radius: 10px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--retro-border);
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-navy);
  color: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 38px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 6px;
  border-radius: 7px;
  color: var(--retro-brown);
  background: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.16s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--retro-navy);
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO & CTA SECTION STYLE
   ===================== */
.hero {
  background: var(--retro-yellow);
  padding: 60px 0 36px 0;
  border-bottom: 5px dashed var(--retro-brown);
}
.hero h1 {
  color: var(--retro-brown);
  text-shadow: 0 1px 0 #fff5e1;
  font-weight: 900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero p {
  color: var(--retro-navy);
  font-size: 1.2rem;
  max-width: 550px;
}
.cta-section {
  background: var(--retro-green);
  color: var(--retro-yellow);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 5px 28px -9px var(--retro-shadow);
  text-align: center;
  margin-bottom: 0;
}
.cta-section h2, .cta-section p {
  color: var(--retro-cream);
}
.cta-section .cta-btn {
  margin: 0 auto;
}

/* =================
   FEATURES & LISTS
   ================= */
.features, .feature-grid, .case-studies .feature-grid, .team .feature-grid, .usp .feature-grid, .curriculum .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 10px;
  width: 100%;
}
.feature-grid > div, .feature-grid > li {
  background: var(--retro-light);
  border: 2px solid var(--retro-border);
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 2px 11px -4px var(--retro-shadow);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.21s;
}
.feature-grid > div:hover, .feature-grid > li:hover {
  box-shadow: 0 8px 42px -8px var(--retro-shadow);
  transform: translateY(-7px) scale(1.02);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(1px 1px 0 rgba(243,180,80,.16));
}
.features h2, .feature-grid h3 {
  color: var(--retro-brown);
  font-size: 1.28em;
}
.feature-grid p {
  color: var(--retro-navy);
  margin-bottom: 0.5em;
}
.feature-grid ul {
  margin: 0 0 0 1em; padding:0;
  font-size: 0.99em;
  color: var(--retro-navy);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div, .feature-grid > li {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
}

/* ===================
   TESTIMONIAL CARDS
   =================== */
.testimonials {
  background: var(--retro-cream);
  border-top: 5px dashed var(--retro-orange);
  padding-bottom: 70px;
  margin-bottom: 0;
}
.testimonials h2 {
  color: var(--retro-navy);
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--retro-yellow);
  border: 2px solid var(--retro-border);
  border-radius: 26px;
  padding: 20px 30px;
  gap: 20px;
  box-shadow: 0 6px 32px -10px var(--retro-shadow);
  margin-bottom: 24px;
  max-width: 580px;
  color: #232323;
  font-size: 1.07em;
  transition: box-shadow 0.20s, transform 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 52px -8px var(--retro-shadow);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-rating {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-bottom: 0.5em;
}
.testimonial-rating img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1px 0 #fffceb);
}

/* =====================
   CARD CONTAINERS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--retro-light);
  border: 2px solid var(--retro-border);
  box-shadow: 0 4px 24px -6px var(--retro-shadow);
  border-radius: 20px;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 10px 51px -11px var(--retro-shadow);
  transform: translateY(-4px) scale(1.011);
}

/* Content Grid Pattern */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

/* Section with Text + Image */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
  }
}

/* Feature Item Pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   FAQ
   ===================== */
.faq-accordion, .faq-snippet {
  background: var(--retro-cream);
  border-left: 11px solid var(--retro-brown);
  border-radius: 18px;
  padding: 30px 24px;
  margin-bottom: 55px;
}
.faq-accordion h2 {
  color: var(--retro-brown);
  margin-bottom: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.faq-list h3 {
  margin-bottom: 4px;
  color: var(--retro-navy);
  font-weight: 700;
  font-size: 1.1rem;
}
.faq-search-bar {
  padding: 9px 13px;
  font-size: 1.03em;
  border: 1.5px solid var(--retro-orange);
  border-radius: 8px;
  margin-bottom: 20px;
  width: 100%;
}
.faq-list li {
  padding: 12px 12px 12px 18px;
  background: var(--retro-yellow);
  border-radius: 7px;
  border-left: 4px solid var(--retro-orange);
  box-shadow: 0 2px 8px -2px var(--retro-shadow);
}

/* =========================
   CONTACT & THANKS SECTION
   ========================= */
.contact-block, .contact-snippet, .thank-you {
  background: var(--retro-light);
  border: 2px solid var(--retro-border);
  border-radius: 20px;
  box-shadow: 0 4px 21px -5px var(--retro-shadow);
  padding: 38px 22px;
  margin-bottom: 55px;
}
.contact-block h2, .contact-snippet h2, .thank-you h1 {
  color: var(--retro-brown);
  margin-bottom: 12px;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.03em;
}
ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width:750px) {
  .contact-block, .contact-snippet, .thank-you {
    padding: 18px 8px;
  }
}

/* ===========
   LEGAL SECTIONS
   =========== */
.legal {
  background: var(--retro-cream);
  border-radius: 18px;
  box-shadow: 0 2px 18px -4px var(--retro-shadow);
  padding: 32px 23px;
  margin-bottom: 55px;
}
.legal h1, .legal h2 {
  color: var(--retro-brown);
}

/* ===============
   FOOTER
   =============== */
.main-footer {
  background: var(--retro-navy);
  color: var(--retro-yellow);
  padding: 0;
  border-top: 7px solid var(--retro-orange);
  font-size: 1rem;
}
.main-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 20px 32px 20px;
}
.footer-brand img {
  max-width: 68px;
  height: auto;
  filter: drop-shadow(1px 1px 0 #FBE38D);
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-nav a, .legal-nav a {
  color: var(--retro-yellow);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02em;
}
.footer-nav a:hover, .legal-nav a:hover, .footer-nav a:focus, .legal-nav a:focus {
  color: var(--retro-orange);
}
.footer-contact {
  min-width: 190px;
}
.footer-contact p, .footer-contact a {
  color: var(--retro-yellow);
  font-size: 0.99em;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: text-bottom;
  margin-right: 7px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-socials a img {
  width: 33px;
  height: 33px;
  transition: filter 0.18s, transform 0.21s;
  filter: grayscale(0.2) brightness(1.3);
}
.footer-socials a:hover img {
  filter: drop-shadow(0 0 8px #fbe38d) brightness(1.00);
  transform: scale(1.09);
}
@media (max-width: 980px) {
  .main-footer .container {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================
   BUTTONS & CTA
   =================== */
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  background: var(--retro-orange);
  color: var(--retro-navy) !important;
  text-transform: uppercase;
  padding: 13px 33px;
  font-weight: 900;
  font-size: 1.14rem;
  border: none;
  border-radius: 28px;
  box-shadow: 0 6px 22px -8px var(--retro-shadow);
  margin-top: 10px;
  letter-spacing: 0.07em;
  transition: background 0.19s, color 0.21s, box-shadow 0.19s, transform 0.22s;
  position: relative;
  outline: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow) !important;
  box-shadow: 0 12px 38px -9px var(--retro-shadow);
  transform: scale(1.033);
  outline: 2px solid var(--retro-orange);
}
button:active {
  transform: scale(0.97); 
}

/* ==========
   FORM ELEMENTS
   ========== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1.5px solid var(--retro-orange);
  border-radius: 6px;
  margin-bottom: 16px;
  background: #FFF8E7;
  color: #23395B;
  transition: border 0.19s, background 0.19s;
}
input:focus, textarea:focus, select:focus {
  background: #FFFDF5;
  border: 2px solid var(--retro-brown);
  outline: none;
}

/* =============
   RESPONSIVE LAYOUT
   ============= */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.01rem; }
}
@media (max-width: 900px) {
  .main-header .container { padding: 0 13px; }
  .main-footer .container { padding: 32px 8px 18px 8px; }
  .hero { padding: 36px 0 20px 0; }
  .features, .feature-grid { gap: 15px; }
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
.cta-btn, .main-nav a, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.17s, color 0.18s, box-shadow 0.17s, transform 0.16s;
}
.card, .testimonial-card, .feature-grid > div, .feature-grid > li {
  transition: box-shadow 0.17s, transform 0.18s;
}

/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--retro-navy);
  color: var(--retro-yellow);
  box-shadow: 0 -4px 38px -7px var(--retro-shadow);
  z-index: 8000;
  padding: 17px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookiebounce 0.5s cubic-bezier(.77,.18,.28,.97);
}
@keyframes cookiebounce {
  0%   { transform: translateY(70px) scale(.97); opacity: 0; }
  60%  { transform: translateY(-7px) scale(1.01); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 290px;
  color: var(--retro-yellow);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.04em;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: var(--retro-orange);
  color: var(--retro-navy);
  border-radius: 13px;
  padding: 9px 21px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  outline: none;
  margin: 0;
  margin-right: 0 !important;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.settings {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}
.cookie-btn.reject {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-green);
  color: var(--retro-yellow);
}
@media (max-width:800px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 18px; font-size: 0.99em; }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 29, 21, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: cmfade .28s cubic-bezier(.82,0,.23,1);
  pointer-events: all;
}
@keyframes cmfade{
  from {opacity:0;}
  to{opacity:1;}
}
.cookie-modal .cookie-modal-content {
  background: var(--retro-cream);
  border-radius: 21px;
  padding: 34px 26px 23px 26px;
  width: 96vw;
  max-width: 410px;
  box-shadow: 0 12px 64px -20px var(--retro-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.04em;
  color: var(--retro-brown);
  border: 2px solid var(--retro-border);
}
.cookie-modal h2 {
  color: var(--retro-brown);
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, serif;
  font-weight: 900;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: var(--retro-orange);
  color: var(--retro-navy);
  font-size: 1.8em;
  border-radius: 10px;
  border: 1px solid var(--retro-border);
  width: 33px; height:33px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 9px 0;
  font-size: 1.02em;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category .always-on {
  color: var(--retro-green);
  font-weight: bold;
  margin-left: 10px;
  font-size: .93em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* Hide cookie toast/modal by default (use JS to show) */
.cookie-banner, .cookie-modal {
  display: none;
}
.cookie-banner.visible {
  display: flex;
}
.cookie-modal.visible {
  display: flex;
}

/* =========================
   MISC - NOSTALGIC ELEMENTS
   ========================= */
.hero, .cta-section {
  background-image:
    repeating-linear-gradient(135deg, transparent, transparent 88px, #fdcd7c11 98px, transparent 108px);
}
.section, .main-footer {
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 60px, #fff0cc26 80px, transparent 95px);
}

/* Decorative corner pattern for cards (only decor, not content) */
.card::before, .feature-grid > div::before, .testimonial-card::before {
  content: '';
  position: absolute;
  left: -2px; top: -2px;
  width: 36px;
  height: 36px;
  background: url('../assets/deco-corner.svg') no-repeat center center / contain;
  opacity: 0.23;
  z-index: 0;
  pointer-events: none;
}

@media (max-width:700px) {
  .card::before, .feature-grid > div::before, .testimonial-card::before {
    display: none;
  }
}

/* ===============================
   ENSURE NO OVERLAPS AND SPACING
   =============================== */
.section, section, .content-wrapper, .card, .testimonial-card, .feature-grid > div, .feature-grid > li {
  margin-bottom: 20px;
}

/* Prevent last-of-kind from having extra space */
.section:last-child, section:last-child, .card:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/***
  The above CSS is comprehensive, follows mobile-first, vintage-retro, and modern rules,
  uses only flex for all grid/row/section layouts, adds vibrant nostalgic color/typography,
  ensures strong contrast (especially for testimonials),
  and handles all core interactive elements, burger menu and cookie consent.
***/
