/* ===========================
   RESET & BASE NORMALIZATION
   =========================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF6ED;
  color: #25394D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6, strong { font-weight: 700; }

/* ===========================
     FONT-FACE: VINTAGE TONES
   =========================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #25394D;
}

/* Retro-inspired custom headings */
h1 {
  font-size: 2.75rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 900;
  color: #2D2320;
  text-shadow: 1px 2px 0 #F1B77B, 2px 4px 4px #E8F0F744;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #25394D;
  letter-spacing: 0.5px;
  font-weight: 900;
  text-shadow: 0 2px 0 #E8F0F7AA;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ===========================
   VINTAGE-RETRO COLOR PALETTE
   =========================== */
:root {
  --primary: #25394D;
  --secondary: #F1B77B;
  --accent: #E8F0F7;
  --retro-green: #BCC251;
  --retro-red: #D36751;
  --retro-brown: #955B3E;
  --neutral-cream: #FFF6ED;
  --vintage-border: #C4B39B;
  --retro-shadow: 0 2px 12px 0 rgba(200,110,50,0.10), 0 1px 2px 0 rgba(60,40,25,0.07);
}

/* ===========================
       GENERAL LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-cream);
  border-radius: 22px;
  box-shadow: var(--retro-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--vintage-border);
  padding: 28px 22px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover,
.card:focus {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px 0 rgba(245,120,60,0.14);
  z-index: 1;
}

.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(--accent);
  border: 2px dashed var(--retro-brown);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--retro-shadow);
  transition: box-shadow 0.15s;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: var(--primary);
  font-style: italic;
}
.testimonial-card strong {
  color: var(--retro-brown);
  font-weight: 900;
  font-size: 1.03em;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Typical flex-based layouts for specified HTML */
.feature-grid, .course-listings, .course-grid, .post-list, .instructor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.feature-grid > div, .course-listings > div, .course-grid > div, .post-list > div, .instructor-list > div {
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--vintage-border);
  box-shadow: var(--retro-shadow);
  padding: 25px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 0;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.feature-grid > div:hover,
.course-listings > div:hover,
.course-grid > div:hover,
.post-list > div:hover,
.instructor-list > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 18px 0 #D3675120;
  z-index: 1;
}

.instructor-bio-card {
  display: flex;
  flex-direction: column;
  background: #fffbe8;
  border: 2px solid var(--retro-green);
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: var(--retro-shadow);
  gap: 10px;
}
.instructor-bio-card h3 {
  color: var(--primary);
}
.instructor-bio-card span img {
  width: 28px;
  height: 28px;
  margin-top: 6px;
}
.certification-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Vintage patterns on large containers (retro flair) */
.section {
  background: repeating-linear-gradient(135deg,#FFF6ED 0 45px,#FAE1C2 45px 90px);
  border: 3px solid var(--vintage-border);
}

/* ===========================
   NAVIGATION / HEADER
   =========================== */
header {
  background: var(--primary);
  border-bottom: 5px double var(--secondary);
  box-shadow: 0 3px 12px #25394D18;
  padding: 0 0 0 0;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  padding: 7px 16px;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: #25394D;
}
header nav a.cta-primary {
  background: var(--secondary);
  color: #25394D;
  font-weight: 900;
  font-size: 1.08rem;
  margin-left: 16px;
  box-shadow: 2px 4px 0 #E8F0F7;
  text-shadow: 1px 2px 0 #fff;
  border: 2px solid #fff6ed88;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #f5e2cb;
  color: var(--primary);
  box-shadow: 4px 7px 0 #F1B77B;
}
header nav img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  margin: 10px 4px 10px auto;
  cursor: pointer;
  z-index: 52;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.7,.2,.26,1);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 2px 0 18px #25394D28;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 12px;
  margin: 20px 0 12px 20px;
  padding: 6px 16px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 5;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-red);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0 0 28px;
  width: 80vw;
  max-width: 400px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  background: none;
  padding: 12px;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Hide mobile menu on desktop */
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 899px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===========================
         HERO SECTIONS
   =========================== */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-section h1,
.text-section h2 {
  text-align: left;
}

/* ===========================
         BUTTONS & LINKS
   =========================== */
.cta-primary,
.cta-secondary,
button,
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  text-transform: uppercase;
  padding: 13px 32px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.19s, color 0.19s, transform 0.08s;
  outline: none;
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 2px 4px 0 #E8F0F7;
  border: 2px solid var(--retro-brown);
  letter-spacing: 1px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #e9ab6b;
  color: #2D2320;
  box-shadow: 4px 6px 0 #F1B77B55;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: transparent;
  color: var(--retro-brown);
  border: 2px solid var(--retro-brown);
  box-shadow: none;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--retro-brown);
  color: #fff;
  box-shadow: 2px 5px 0 #E8F0F799;
  transform: translateY(-2px) scale(1.03);
}
a {
  transition: color 0.12s, text-shadow 0.15s;
}
a:hover, a:focus {
  color: var(--secondary);
  text-shadow: 1px 2px 1px #fffbe8;
}

/* ===========================
         TABLES (PRICING)
   =========================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--retro-shadow);
  margin-bottom: 32px;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 2px solid var(--vintage-border);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table thead th {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.6px;
}
.pricing-table tbody tr:hover {
  background: var(--accent);
}

/* ===========================
        MISCELLANEOUS FLEX
   =========================== */
.course-filters,
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-size: 1rem;
  color: var(--retro-brown);
}
.client-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 0;
}
.client-logos img {
  height: 46px;
  width: auto;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 20px 0 0 0;
}
.contact-info > div {
  margin-right: 28px;
}
.map-location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/***************
    FOOTER
***************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 28px 0;
  font-size: 1rem;
  border-top: 5px double var(--secondary);
}
footer .container > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
}
footer .container > nav a {
  color: #fff;
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.9px;
  transition: color 0.12s;
}
footer .container > nav a:hover,
footer .container > nav a:focus {
  color: var(--secondary);
}
footer .contact-info {
  color: #fff;
  font-size: 0.98rem;
  margin-top: 6px;
  gap: 12px;
}
footer .contact-info img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  margin-bottom: 3px;
}
footer .footer-social {
  margin-top: 12px;
}

/* ===========================
     COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF6ED;
  color: var(--primary);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -3px 14px #E8F0F755;
  z-index: 1500;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.06rem;
  animation: bannerIn .4s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  min-width: 125px;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 14px;
  border: 2px solid var(--secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  margin-right: 8px;
  margin-bottom: 0;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner button:last-child {
  background: #fff;
  color: var(--primary);
  border: 2px dotted var(--retro-brown);
}
.cookie-banner button:last-child:hover {
  background: var(--retro-brown);
  color: #fff;
}

@keyframes bannerIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 420px;
  background: #fffbe8;
  border-radius: 22px;
  border: 3px solid var(--secondary);
  box-shadow: 0px 4px 32px #955B3E33;
  z-index: 2000;
  padding: 36px 32px 24px 32px;
  transform: translate(-50%,-60%);
  animation: modalIn 0.45s;
}
#cookie-modal.open {
  display: block;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%,-75%) scale(0.97); }
  to { opacity: 1; transform: translate(-50%,-60%) scale(1); }
}
#cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--retro-brown);
  font-weight: 700;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--secondary);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  margin-right: 6px;
  position: relative;
  outline: none;
  transition: border 0.13s;
}
.cookie-category input[type=checkbox]:checked {
  background: var(--secondary);
  border-color: var(--retro-green);
}
.cookie-category input[type=checkbox]:checked:after {
  content: '\2714';
  color: var(--primary);
  position: absolute;
  left: 4px;
  top: 1px;
  font-size: 1.1rem;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
#cookie-modal button {
  min-width: 100px;
}
#cookie-modal .category-essential .cookie-category label {
  color: var(--retro-green);
}
#cookie-modal .category-essential input[type=checkbox] {
  background: var(--retro-green) !important;
  border-color: var(--retro-green);
}

/* MODAL overlay */
#cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #25394de0;
  z-index: 1950;
  animation: fadeIn 0.33s;
}
#cookie-modal.open ~ #cookie-modal-backdrop {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===========================
        TYPOGRAPHY
   =========================== */
p, li {
  font-size: 1.02rem;
  line-height: 1.68;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
strong {
  font-weight: 900;
}
blockquote {
  border-left: 5px solid var(--retro-brown);
  padding-left: 18px;
  margin-left: 0;
  font-style: italic;
  background: #fff6ed80;
}

/* ===========================
      RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  .content-grid, .feature-grid, .course-grid, .post-list, .course-listings, .instructor-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 42px;
    padding: 26px 10px;
  }
  .feature-grid > div, .course-listings > div, .course-grid > div, .post-list > div, .instructor-list > div {
    min-width: 185px;
    max-width: 90vw;
  }
  h1 {
    font-size: 2.15rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 18px 0 20px 0;
    margin-bottom: 28px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-grid,
  .feature-grid,
  .course-listings,
  .post-list,
  .course-grid,
  .instructor-list,
  .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card,
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    flex-direction: column;
    gap: 12px;
  }
  .client-logos {
    gap: 18px;
    flex-direction: column;
  }
  .contact-info {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.28rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.06rem;
    margin-bottom: 13px;
  }
  .cta-primary, .cta-secondary, button, input[type="submit"] {
    padding: 8px 17px;
    font-size: 0.90rem;
    border-radius: 13px;
  }
  .testimonial-card {
    font-size: 0.98rem;
    padding: 13px 7px;
  }
  .section {
    border-radius: 9px;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .card, .feature-grid > div, .course-grid > div, .instructor-bio-card {
    padding: 13px 7px;
    min-width: 0;
    max-width: 100vw;
  }
}

/* ===========================
    UTILITY & MISC PATTERNS
   =========================== */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.mt-3 { margin-top: 1.25rem; }
.mb-2 { margin-bottom: 0.65rem; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ===========================
    MICRO-INTERACTIONS
   =========================== */
.card, .feature-grid > div, .course-listings > div, .instructor-bio-card {
  transition: box-shadow 0.18s, border-color 0.14s, transform 0.11s;
}
.card:hover, .feature-grid > div:hover, .course-listings > div:hover, .instructor-bio-card:hover {
  transform: scale(1.026) translateY(-2px);
  box-shadow: 0 6px 24px #C4B39B22, 0 2px 8px #D3675122;
}
.cta-primary:active,
.cta-secondary:active,
button:active {
  transform: scale(0.97);
}

/* ===========================
      SPECIAL RETRO FLARE
   =========================== */
.feature-grid > div, .testimonial-card, .card, .course-listings > div, .instructor-bio-card {
  border-style: dashed;
  border-width: 2px;
}
.testimonial-card {
  border-style: dashed;
  border-color: var(--retro-brown);
  background: repeating-linear-gradient(130deg, #e8f0f7, #FAE1C2 18px);
}

/* Retro divider lines */
hr {
  border: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,var(--secondary),var(--accent) 40px,var(--secondary) 80px);
  border-radius: 15px;
  margin: 26px 0;
}

/* Retro circular accent on headings */
h2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--retro-red);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
h2::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--retro-green);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}

/* ===========================
     FORM ELEMENTS STANDARD
   =========================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 14px;
  border: 2px solid var(--vintage-border);
  border-radius: 10px;
  font-size: 1.03rem;
  outline: none;
  margin-bottom: 16px;
  background: #fffbe8;
  color: var(--primary);
  width: 100%;
  transition: border-color 0.12s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px var(--accent);
}

/* Accessibility - focus outline */
a, button, .cta-primary, .cta-secondary, input, select, textarea {
  outline-color: var(--secondary);
  outline-offset: 2px;
}

/* ===========================
     Z-INDEX LAYERING
   =========================== */
.mobile-menu,
#cookie-modal,
#cookie-modal-backdrop,
.cookie-banner {
  z-index: 1500;
}
header {
  z-index: 1200;
}

/* ===========================
    OVERLAPPING/PADDING ADJUST
   =========================== */
/* Ensure minimum vertical margin between components */
.section, .card, .testimonial-card, .feature-grid > div, .course-listings > div, .course-grid > div, .post-list > div, .instructor-bio-card {
  margin-bottom: 24px;
}
/* Prevent absolute positioning except for deco-elements */

/* ===========================
    PRINT STYLES
   =========================== */
@media print {
  *, *:before, *:after {
    color: #222 !important;
    background: none !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-banner, #cookie-modal, #cookie-modal-backdrop, .mobile-menu { display: none !important; }
}
