/* RESET & 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,
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;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #FBF8F3;
  color: #2D2926;
  font-size: 16px;
  letter-spacing: 0.03em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
* {
  box-sizing: border-box;
}

/* BRAND COLORS & RETRO PALETTE */
:root {
  --primary: #15416D;
  --secondary: #44AA77;
  --accent: #F9FAFB;
  --vintage-yellow: #F7CB46;
  --vintage-orange: #EF9365;
  --vintage-brown: #6B4B27;
  --vintage-cream: #FCF4E1;
  --vintage-red: #D9513B;
  --neutral-gray: #E7E3DC;
}

body {
  background-color: var(--vintage-cream);
  color: #2D2926;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-shadow: 2px 2px 0 var(--vintage-yellow), 0 3px 8px #00000015;
}
h2 {
  font-size: 2rem;
  color: var(--vintage-red);
  text-shadow: 1px 1px 0 var(--vintage-yellow);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.5rem;
  color: var(--vintage-brown);
}
h4, h5, h6 {
  font-size: 1.15rem;
  font-weight: 700;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.75em;
}
strong {
  font-weight: 700;
}

/* GENERAL LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--vintage-cream);
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 #00000010;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  align-items: flex-start;
}

.card-container, .course-list, .post-grid, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.card, .course-item, .post-item {
  background: var(--neutral-gray);
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px #00000008;
  padding: 24px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid var(--vintage-yellow);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00000014;
  border-left: 6px solid var(--vintage-brown);
  color: #40281B;
  min-width: 240px;
  max-width: 480px;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-brown);
  font-weight: 700;
  font-size: 0.98rem;
}

/* LAYOUT FLEX RULES */
.content-grid, .post-grid, .course-list, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BRAND RETRO BUTTONS / CTA */
.cta-btn {
  background: var(--vintage-orange);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 10px #00000008;
  margin-top: 16px;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.18s, transform 0.16s;
  position: relative;
  outline: none;
}
.cta-btn:after {
  content: '';
  position: absolute;
  left: 12px; top: 12px; right: 12px; bottom: 12px;
  border-radius: 20px;
  border: 1.5px dashed var(--vintage-yellow);
  pointer-events: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vintage-red);
  color: var(--vintage-yellow);
  box-shadow: 0 6px 24px #00000018;
  transform: translateY(-2px) scale(1.025);
}

/* HEADER & NAVIGATION - VINTAGE RETRO */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-bottom: 7px double var(--vintage-yellow);
  box-shadow: 0 7px 14px #00000007;
  z-index: 28;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.logo-link img {
  height: 56px;
  width: auto;
  margin-right: 20px;
  filter: drop-shadow(2px 4px 3px #00000020);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 10px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s;
}

.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: var(--vintage-yellow);
  border-radius: 2px;
  width: 0;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--vintage-yellow);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 80%;
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-yellow);
  color: var(--primary);
  font-size: 2.3rem;
  border: none;
  border-radius: 9px;
  padding: 7px 18px;
  margin-left: auto;
  cursor: pointer;
  box-shadow: 0 2px 10px #00000017;
  transition: background 0.19s, transform 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vintage-orange);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.76,.13,.52,.97);
  box-shadow: 7px 0 32px #00000030;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--vintage-yellow);
  border: none;
  font-size: 2.2rem;
  margin: 24px 0 0 28px;
  align-self: flex-start;
  cursor: pointer;
  outline: none;
  transition: color 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--vintage-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  margin: 64px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 8px 10px 8px 0;
  text-shadow: 1px 1px 0 var(--vintage-yellow);
  transition: color 0.14s, padding-left 0.09s;
  border-radius: 7px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--vintage-yellow);
  background: var(--vintage-orange);
  padding-left: 14px;
}


/* HERO SECTIONS */
.hero {
  width: 100%;
  background: var(--accent);
  border-bottom: 6px double var(--vintage-yellow);
  padding: 58px 0 34px 0;
  position: relative;
  z-index: 1;
}
.hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -60px; top: -48px;
  width: 120px; height: 120px;
  background: var(--vintage-yellow);
  border-radius: 60% 50% 38% 61%;
  opacity: 0.13;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 0 var(--vintage-yellow), 0 2px 12px #00000010;
}
.hero p {
  color: var(--vintage-brown);
  background: var(--vintage-cream);
  padding: 12px 16px 10px 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px #0001;
}

/* COURSE & FEATURE LISTS */
ul {
  list-style-type: none;
  padding-left: 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
  color: var(--primary);
  margin-bottom: 11px;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(1px 1px 3px #00000009);
  flex-shrink: 0;
}
.level-tag {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  font-size: 0.93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 12px;
  margin-left: 8px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-top: 7px double var(--vintage-yellow);
  padding: 36px 0 12px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.footer-menu {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--vintage-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding-bottom: 2px;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--vintage-orange);
}
.brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-yellow);
  font-size: 1.08rem;
  background: var(--primary);
  padding: 6px 18px 8px 18px;
  border-radius: 17px;
  box-shadow: 0 2px 10px #0000000b;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.footer-contact span img {
  height: 18px;
  width: auto;
  margin-right: 8px;
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-links a img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(1px 2px 2px #00000023);
  border-radius: 5px;
  background-color: #FFD20010;
  padding: 3px;
  transition: box-shadow 0.14s;
}
.social-links a:hover img, .social-links a:focus img {
  box-shadow: 0 4px 18px var(--vintage-brown);
}

/* CONTACT INFO BLOCKS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--neutral-gray);
  border-radius: 11px;
  padding: 9px 13px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* TESTIMONIAL CARDS */
.review-summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.17rem;
  background: var(--vintage-yellow);
  padding: 9px 13px;
  border-radius: 12px;
  box-shadow: 0 1px 7px #00000016;
  margin-top: 10px;
  margin-bottom: 0;
}

/* CASE STUDY */
.case-study-summary {
  background: var(--neutral-gray);
  padding: 17px 26px;
  border-radius: 14px;
  font-size: 1.01rem;
  color: var(--vintage-brown);
  box-shadow: 0 2px 7px #0001;
  margin-top: 18px;
  margin-bottom: 0;
  border-left: 5px dashed var(--vintage-orange);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 39px;
  width: auto;
  filter: sepia(0.25) contrast(1.1) brightness(1.03);
  background: var(--accent);
  border-radius: 6px;
  box-shadow: 0 1px 7px #0001;
  padding: 6px 10px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list li {
  background: var(--neutral-gray);
  border-radius: 8px;
  padding: 13px 17px;
  font-size: 1.04rem;
  color: var(--vintage-brown);
  box-shadow: 0 1px 6px #0002;
}

/* SUPPORT HIGHLIGHTS */
.support-highlights ul {
  list-style: none;
  padding-left: 0;
}
.support-highlights li {
  background: var(--vintage-yellow);
  border-radius: 9px;
  padding: 8px 15px;
  margin-bottom: 11px;
  color: var(--vintage-brown);
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.support-highlights img {
  width: 22px;
  height: 22px;
}

/* BLOG LIST & SEARCH */
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-item {
  background: var(--neutral-gray);
  border-radius: 10px;
  padding: 15px 17px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 2px 8px #0001;
  border: 1.5px dashed var(--vintage-yellow);
}
.categories {
  margin-top: 15px;
  font-size: 0.97rem;
  color: var(--vintage-brown);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.categories h4 {
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 700;
}
.categories span {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  padding: 2px 9px;
  border-radius: 7px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 18px;
}
.category-list a {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  padding: 7px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: 1.5px solid var(--vintage-brown);
  font-size: 0.98rem;
  transition: background 0.18s, color 0.18s;
}
.category-list a:hover, .category-list a:focus {
  background: var(--vintage-red);
  color: #fff;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar input {
  padding: 8px 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  border: 1.5px solid var(--primary);
  background: #fff;
  box-shadow: 0 2px 7px #0000000b;
  margin-left: 7px;
}
.search-bar input:focus {
  outline: 2px dashed var(--vintage-yellow);
  border-color: var(--vintage-yellow);
}

/* LOCATION MAP */
.location-map {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--neutral-gray);
  border-radius: 9px;
  padding: 15px 20px;
  box-shadow: 0 2px 9px #0001;
}
.location-map img {
  height: 48px;
  width: auto;
}
.location-map p {
  font-size: 1.03rem;
  color: var(--vintage-brown);
  margin-bottom: 0;
}

/* MODALS, OVERLAYS, ANIMATION */
@keyframes slideUp {
  from {transform: translateY(100px); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}

@keyframes slideInMenu {
  from {transform: translateX(-100vw);}
  to {transform: translateX(0);}
}

@keyframes fadeInModal {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  width: 100vw;
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  box-shadow: 0 -3px 18px #0002;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 17px 18px 14px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  animation: slideUp 0.52s ease;
}
.cookie-consent-banner p {
  color: var(--vintage-brown);
  margin-bottom: 6px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  justify-content: center;
}
.cookie-btn {
  background: var(--primary);
  color: var(--vintage-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-btn-settings {
  background: var(--neutral-gray);
  color: var(--primary);
  border: 1.2px solid var(--primary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--primary);
  color: var(--vintage-yellow);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #00000077;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s;
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 19px;
  max-width: 410px;
  width: 94%;
  padding: 26px 26px 22px 26px;
  box-shadow: 0 7px 37px #0004;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: slideUp 0.28s;
}
.cookie-modal h3 {
  color: var(--vintage-brown);
  font-size: 1.21rem;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  font-size: 1.04rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--vintage-yellow);
  width: 20px; height: 20px;
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--vintage-red);
  font-size: 1.36rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: -10px;
  margin-right: -9px;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--primary);
}

/* MICRO-INTERACTIONS & HOVER */
a, .cta-btn, .cookie-btn, .category-list a {
  transition: background 0.17s, color 0.13s, box-shadow 0.16s, transform 0.13s;
}
.category-list a:active, .cookie-btn:active, .cta-btn:active {
  transform: scale(0.95);
}

/* RETRO PATTERNS & NOSTALGIC ELEMENTS */
.section {
  background-image:
    repeating-linear-gradient(135deg, transparent, transparent 38px, #F7CB4632 40px, transparent 42px, transparent 66px),
    linear-gradient(110deg, #FCF4E1 65%, #F7CB4615 100%);
  box-shadow: 0 6px 40px #bf95541a;
  border: 2.5px solid var(--neutral-gray);
  border-radius: 18px 38px 19px 24px / 20px 28px 20px 18px;
}

/* RETRO SHADOWS */
.card, .testimonial-card, .cta-btn, .section, .post-item, .course-item {
  box-shadow: 0 4px 18px #bf95541a;
}

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 1060px) {
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
    font-size: 1.04rem;
  }
  .footer-menu {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  body, html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .logo-link img {
    height: 40px;
    margin-right: 7px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .card-container, .post-grid, .course-list, .category-list, .client-logos {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  .container {
    max-width: 100vw;
    padding-left: 2px;
    padding-right: 2px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    font-size: 1rem;
    min-width: unset;
    max-width: 96vw;
  }
}
@media (max-width: 630px) {
  .footer-menu, .footer-contact, .social-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .brand-tagline {
    font-size: 0.97rem;
    border-radius: 12px;
    padding: 5px 10px;
  }
  .cookie-consent-banner {
    font-size: 0.93rem;
    padding: 15px 5px 10px 5px;
  }
  .cookie-modal {
    padding: 13px 7px 12px 13px;
    font-size: 1rem;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 34px 0 18px 0;
  }
  h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.18rem;
  }
  .cta-btn {
    font-size: 0.96rem;
    padding: 10px 11px;
  }
  .testimonial-card, .card, .course-item, .post-item {
    padding: 13px 7px;
  }
}
/* ENSURE FLEX LAYOUTS AND SECTION SPACING - CRITICAL */
.section, .content-wrapper, .card-container, .course-list, .post-grid, .category-list, .feature-item {
  margin-bottom: 20px;
}
.text-image-section {
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .content-grid, .feature-item, .post-grid, .card-container, .course-list, .category-list {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 0;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
}
/* SHOW BURGER ON MOBILE */
@media (max-width: 968px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Always use flex layot for .content-wrapper, .section, .feature-item, testimonial-card, etc. */

/* UTILITY CLASSES */
.mb-0 {margin-bottom: 0 !important;}
.mt-0 {margin-top: 0 !important;}
.pt-0 {padding-top: 0 !important;}
.pb-0 {padding-bottom: 0 !important;}

/* Hide visually, accessible */
.visually-hidden {position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;}

/* END OF CSS */
