/* 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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F1E8;
  color: #2B2633;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}

/* BRAND VINTAGE RETRO PALETTE */
:root {
  --brand-blue: #203264;
  --brand-cream: #F0F2F8;
  --brand-accent: #F6B22E;
  --vintage-bg: #F8F1E8;
  --vintage-dark: #231B15;
  --vintage-choco: #73523c;
  --vintage-mint: #a8d8c9;
  --vintage-orange: #F79036;
  --vintage-red: #F43E3E;
  --vintage-green: #35A787;
}

/* VINTAGE RETRO FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 var(--brand-accent), 0 2px 4px rgba(32,44,96,0.07);
}
h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 16px; }
h3 { font-size: 24px; margin-bottom: 8px; }
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--vintage-dark);
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  background: #F0E7D0;
  border-left: 4px solid var(--brand-accent);
  margin-bottom: 12px;
  padding: 14px 20px;
  border-radius: 8px;
}

strong {
  color: var(--brand-blue);
  font-weight: bold;
}
/* Container Alignment */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
@media (max-width: 1024px) {
  .container { max-width: 100%; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* HEADER NAVIGATION */
header {
  background: var(--vintage-bg);
  border-bottom: 4px solid var(--brand-accent);
  box-shadow: 0 2px 18px 0 rgba(32,50,100,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--brand-blue);
  padding: 8px 0;
  transition: color 0.2s;
  border-radius: 4px;
  position: relative;
}
.main-nav a:not(.btn-primary):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.2s;
  margin-top: 3px;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  color: var(--vintage-orange);
}
.main-nav a:not(.btn-primary):hover:after,
.main-nav a:not(.btn-primary):focus:after {
  width: 100%;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 28px;
  border-radius: 99px;
  box-shadow: 1px 2px 0 var(--vintage-choco), 0 4px 12px 0 rgba(32,50,100,0.10);
  letter-spacing: 0.5px;
  margin: 6px 0 6px 0;
  cursor: pointer;
  background: var(--brand-accent);
  color: #231B15;
  border: 2px solid var(--brand-accent);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  outline: none;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--vintage-orange);
  color: var(--vintage-bg);
  box-shadow: 2px 6px 0 var(--brand-blue), 0 8px 20px 0 rgba(32,50,100,0.18);
  border-color: var(--brand-blue);
}

.btn-secondary {
  background: var(--brand-blue);
  color: #fff;
  border: 2px solid var(--brand-blue);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vintage-choco);
  color: #fff;
  box-shadow: 2px 6px 0 var(--brand-accent), 0 8px 20px 0 rgba(246,178,46,0.12);
  border-color: var(--vintage-orange);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: var(--brand-blue);
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: 12px;
  border: 2px solid var(--vintage-choco);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1000;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--vintage-orange);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F1E8;
  box-shadow: 0 8px 42px 0 rgba(32,50,100,0.18);
  z-index: 2222;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.55,.03,.13,1.01), opacity 0.28s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: var(--brand-accent);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 30px;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1999;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--vintage-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 48px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  border-bottom: 1.5px dashed var(--brand-accent);
  color: var(--brand-blue);
  letter-spacing: 1px;
  transition: color 0.25s, background 0.15s;
  border-radius: 5px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--vintage-red);
  background: var(--vintage-bg);
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1081px) {
  .mobile-menu {
    display: none!important;
  }
}

/* SECTIONS SPACING CONSISTENCY */
.section,
.hero-section,
.features-section,
.about-short-section,
.courses-preview-section,
.cta-section,
.team-section,
.values-section,
.blog-list-section,
.categories-section,
.faq-section,
.legal-section,
.contact-section,
.location-section,
.thankyou-section,
.testimonials-section,
.testimonials-preview-section,
.course-list-section,
.method-preview-section,
.steps-section,
.whychoose-section
{
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff6e9;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(245,166,36,0.11);
}
.cta-section {
  background: linear-gradient(90deg,#F6B22E 0%,#F0E7D0 100%);
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(32,44,100,0.09);
  text-align: center;
}
@media (max-width:768px) {
  .section, .hero-section, .features-section, .about-short-section, .courses-preview-section, .cta-section, .legal-section, .contact-section, .location-section, .thankyou-section {
    padding: 28px 7px;
    margin-bottom: 28px;
  }
}

/* FLEXBOX LAYOUTS - No GRID EVER! */
.features-grid, .courses-card-grid, .values-list, .team-list, .testimonial-slider, .testimonial-cards, .blog-posts, .steps-timeline, .success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.features-grid li, .values-list li, .team-list li, .course-card, .step, .testimonial-card, .blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 14px 0 rgba(32,44,100,0.09);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.courses-card-grid, .testimonial-cards, .blog-posts {
  gap: 24px;
}
@media (max-width: 900px) {
  .features-grid li, .values-list li, .team-list li, .course-card, .step, .testimonial-card, .blog-card {
    min-width: 180px;
    max-width: 100%;
  }
}

.features-grid li:hover, .course-card:hover, .testimonial-card:hover, .blog-card:hover {
  box-shadow: 0 7px 30px 0 rgba(32,44,100,0.18),0 2px 8px 0 rgba(246,178,46,0.08);
  transform: translateY(-7px) scale(1.03);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.card-container,
.card-grid
{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 1.5px 14px 0 rgba(32,44,100,0.09);
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 20px 0 rgba(32,44,100,0.17);
  transform: translateY(-3px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section, .values-list, .team-list, .features-grid, .courses-card-grid, .testimonial-cards, .blog-posts, .steps-timeline, .success-stories {
    flex-direction: column;
    gap: 20px;
  }
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F0F2F8;
  padding: 28px 24px 20px 24px;
  min-width: 260px;
  max-width: 400px;
  box-shadow: 0 3px 18px 0 rgba(32,44,100,0.13);
  border-radius: 20px;
  border: 2.5px dashed var(--brand-accent);
}
.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2.5px solid var(--brand-accent);
  margin-bottom: 4px;
}
.testimonial-card blockquote {
  color: #231B15;
  font-size: 17px;
  text-align: center;
  font-style: italic;
  background: #fff;
  border-left: none;
  padding: 10px 16px 10px 16px;
  border-radius: 10px;
}
.testimonial-card p {
  color: var(--brand-blue);
  font-size: 15px;
  text-align: center;
}
.testimonial-card .ratings {
  color: #F79036;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* Syllabus, course, and other details lists */
.syllabus-highlight, .summary-benefits, .course-overviews, .benefits-list, .categories-tags, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.syllabus-highlight li, .summary-benefits li, .course-overviews li, .benefits-list li, .categories-tags span {
  background: #FFECA2;
  color: #473B24;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.categories-tags span {
  background: #F6B22E;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

/* BLOG CARDS */
.blog-card {
  background: #F0F2F8;
  box-shadow: 0 2px 12px 0 rgba(246,178,46,0.09);
  border-radius: 12px;
  transition: box-shadow 0.14s, transform 0.15s;
  padding: 24px 18px;
  margin-bottom: 20px;
  min-width: 220px;
}
.blog-card h3 {
  color: var(--brand-blue);
  font-size: 22px;
  margin-bottom: 4px;
}
.blog-card .post-date {
  color: var(--vintage-choco);
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
  background: #FFD284;
  border-radius: 4px;
  padding: 2px 10px;
  display: inline-block;
}
.blog-card a {
  color: var(--brand-blue);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.14s;
  border-bottom: 1.5px dotted var(--brand-blue);
}
.blog-card a:hover, .blog-card a:focus {
  color: var(--brand-accent);
}

/* FORMS */
.subscription-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}
.subscription-form input[type="email"] {
  border: 2px solid var(--brand-blue);
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  background: #fff;
  color: var(--vintage-dark);
}
.subscription-form input[type="email"]:focus {
  border-color: var(--brand-accent);
}

/* FOOTER */
footer {
  background: #fffbe6;
  border-top: 4px solid var(--brand-accent);
  padding-top: 34px;
  padding-bottom: 34px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-blue);
  text-decoration: underline;
  transition: color 0.18s;
  font-size: 15px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #594A2B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.footer-copy {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  color: #B09E86;
  font-size: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}
@media (max-width: 950px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* FAQ ACCORDION */
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 6px;
  color: var(--brand-blue);
  cursor: pointer;
  background: #f8e7ce;
  border-left: 5px solid var(--brand-accent);
  padding: 10px 16px;
  border-radius: 8px 0 0 8px;
  transition: background 0.23s;
}
.faq-accordion dd {
  padding-left: 22px;
  padding-bottom: 6px;
}

/* THANK YOU BLOCK */
.thankyou-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-info-block ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.contact-info-block li {
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--vintage-choco);
  margin-bottom: 7px;
  font-size: 16px;
}
.contact-info-block img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

/* LEGAL PAGE */
.legal-section .text-section ul li {
  background: #FFFAF0;
  padding: 8px 16px;
  border-radius: 7px;
  margin-bottom: 8px;
}

/* VINTAGE DETAILS & MICRO-INTERACTIONS */
section {
  position: relative;
  overflow: hidden;
}
section:before {
  content: '';
  position: absolute;
  z-index: 0;
  left: -70px;
  top: -32px;
  width: 160px;
  height: 160px;
  border-radius: 90px;
  background: rgba(246,178,46,0.074);
  pointer-events: none;
}
section:after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -60px;
  bottom: -32px;
  width: 140px;
  height: 140px;
  border-radius: 80px;
  background: rgba(32,50,100,0.045);
  pointer-events: none;
}

@media (max-width: 700px) {
  .content-wrapper, .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .cta-section {
    padding: 18px 3px;
  }
  .blog-card, .course-card, .testimonial-card {
    padding: 16px 7px;
  }
  header .container {
    flex-direction: row;
  }
  .footer-contact, .footer-nav {
    width: 100%;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffdf8;
  border-top: 6px solid var(--brand-accent);
  box-shadow: 0 -1px 18px 0 rgba(32,44,100,0.11);
  padding: 18px 18px 14px 18px;
  z-index: 2800;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: slideUpBanner 0.6s cubic-bezier(.62,.36,.12,1.24) 1;
}
@keyframes slideUpBanner { from { transform: translateY(60px); opacity: 0;} to {transform:none; opacity:1;} }
.cookie-banner p { color: #473B24; font-size: 15px; }
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 16px;
  border: 2px solid;
  cursor: pointer;
  transition: background 0.16s, color 0.20s, border-color 0.13s;
  margin-right: 6px;
}
.cookie-banner .cookie-btn-accept {
  background: var(--brand-accent);
  color: var(--brand-blue);
  border-color: var(--brand-accent);
}
.cookie-banner .cookie-btn-accept:hover, .cookie-banner .cookie-btn-accept:focus {
  background: var(--vintage-orange);
  color: var(--vintage-bg);
  border-color: var(--vintage-orange);
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  color: var(--vintage-red);
  border-color: var(--vintage-red);
}
.cookie-banner .cookie-btn-reject:hover, .cookie-banner .cookie-btn-reject:focus {
  background: #ffded7;
  color: var(--brand-blue);
}
.cookie-banner .cookie-btn-settings {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #f2f8fd;
  color: var(--vintage-dark);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%,50%);
  background: #FFFAF6;
  border-radius: 12px;
  box-shadow: 0 14px 50px 0 rgba(32,44,100,0.16);
  min-width: 340px;
  width: 95vw;
  max-width: 400px;
  z-index: 3600;
  padding: 32px 22px 22px 22px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn 0.4s cubic-bezier(.56,.39,.19,1.09) 1;
}
@keyframes fadeIn { from { opacity: 0; transform: translate(-50%,52%);} to { opacity:1; transform: translate(-50%,50%);} }
.cookie-modal.active {
  display: flex;
}
.cookie-modal h3 {
  font-size: 22px;
  color: var(--brand-blue);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 3px 0;
}
.cookie-modal label {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--vintage-choco);
}
.cookie-modal input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-accent);
  margin-right: 5px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
/* Always enabled badge */
.cookie-modal .cookie-essential {
  background: #C6EAC2;
  color: var(--vintage-green);
  font-size: 13px;
  border-radius: 6px;
  padding: 2px 7px;
  margin-left: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* OVERRIDES FOR INTERFACES */
::-webkit-scrollbar { width: 9px; background: #ebdfd2; }
::-webkit-scrollbar-thumb { background: #f6c374; border-radius: 8px; }

/* RETRO PATTERNS AND HIGHLIGHTS */
.hero-section {
  background: repeating-linear-gradient(135deg, #ffe8c2 0px, #ffe8c2 18px, #fffcf2 18px, #fffcf2 36px);
  border-radius: 32px;
  box-shadow: 0 4px 42px 0 rgba(246,178,46,0.11);
  text-align: center;
}
.hero-section h1 { text-shadow: 2px 3px 0 #ffe3a7, 0 3px 15px rgba(32,44,100,0.07);} 
.hero-section .btn-primary { margin-top: 18px; }

/* SUBTLE ANIMATION FOR BUTTONS */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.17s, color 0.20s, box-shadow 0.13s, border-color 0.11s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active { transform: scale(0.98); }

/* LINK FOCUS RING */
a:focus-visible, button:focus-visible {
  outline: 2px dashed var(--brand-blue);
  outline-offset: 2px;
}

/* PATTERN FOR TESTIMONIAL, FAQ AND CTA SECTIONS */
.testimonials-section, .testimonials-preview-section, .faq-section, .cta-section {
  background: repeating-linear-gradient(120deg,#FFFAED 0px,#FFFAED 30px,#FFF4C6 30px,#FFF4C6 60px);
  border-radius: 24px;
}

/* RETRO STRIPE IN SECTIONS */
.section .retro-stripe, .hero-section .retro-stripe {
  display: block;
  height: 9px;
  width: 100px;
  background: linear-gradient(90deg,#F6B22E 33%,#F79036 67%,#a8d8c9 100%);
  border-radius: 10px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}

/* UTIL CLASSES */
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* RESPONSIVE UTILITIES */
@media (max-width: 650px) {
  h1 { font-size: 25px; }
  h2 { font-size: 19px; }
  h3 { font-size: 15px; }
  body { font-size: 14px; }
  .testimonial-card, .course-card, .blog-card { min-width: 140px; padding: 10px 5px; }
}

/* END CSS */