/* =====================================================
   Iron Quiver Academy - Modern Gradient Theme CSS
   Developed: 2024, Strict Flexbox Layout Only
   ===================================================== */
/* ------ RESET & BASE ------ */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2A394D;
  background: linear-gradient(135deg, #F4F7F9 0%, #e3eaf2 100%);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ol, ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
a {
  color: #2A394D;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #FFD33D;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A394D;
  font-weight: bold;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.25rem; line-height: 1.15; }
h2 { font-size: 1.75rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p, li, .footer-copy {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 1em;
  color: #2A394D;
  line-height: 1.7;
}
strong, b {
  font-weight: bold;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ------ LAYOUT UTILS ------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(42,57,77,0.10);
  padding: 32px 24px;
  max-width: 320px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(42,57,77,0.14);
  transform: translateY(-4px) scale(1.025);
}

/* ------ HEADER & NAV ------ */
header {
  background: linear-gradient(90deg, #f7f9fb 0%, #dde4ef 100%);
  box-shadow: 0 2px 8px 0 rgba(42,57,77,0.04);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}
.desktop-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2A394D;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.desktop-nav img,
.footer-logo img {
  height: 38px;
}
.desktop-nav > a.cta-primary {
  background: linear-gradient(90deg, #2A394D 60%, #FFD33D 200%);
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  padding: 8px 24px;
  box-shadow: 0 2px 8px 0 rgba(42,57,77,0.09);
  margin-left: 10px;
  transition: background 0.24s, box-shadow 0.2s, color 0.2s;
}
.desktop-nav > a.cta-primary:hover,
.desktop-nav > a.cta-primary:focus {
  background: linear-gradient(90deg, #FFD33D 20%, #2A394D 100%);
  color: #2A394D;
  box-shadow: 0 6px 24px 0 rgba(255,211,61,0.16);
}
.desktop-nav > a:hover,
.desktop-nav > a:focus {
  background: #FFD33D;
  color: #2A394D;
}
 .desktop-nav > a.active {
   background: #FFD33D;
   color: #2A394D;
 }

/* ------ MOBILE NAV ------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 201;
  background: #FFD33D;
  color: #2A394D;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(42,57,77,0.12);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2A394D;
  color: #FFD33D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: linear-gradient(120deg, #f5f7fa 70%, #e9ecef 100%);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,.9,.34,1.05);
  will-change: transform;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  left: 28px;
  background: #2A394D;
  color: #FFD33D;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  z-index: 205;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #FFD33D;
  color: #2A394D;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A394D;
  border-radius: 10px;
  padding: 14px 32px;
  width: 80vw;
  max-width: 320px;
  text-align: center;
  background: #fff;
  margin: 0 0 0 0;
  box-shadow: 0 2px 8px rgba(42,57,77,0.06);
  transition: background 0.18s, color 0.16s;
  touch-action: manipulation;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD33D;
  color: #2A394D;
}
/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ------ HERO SECTION ------ */
.hero-section {
  background: linear-gradient(135deg, #FFD33D 12%, #F4F7F9 100%);
  padding: 62px 0 44px 0;
  margin-bottom: 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #2A394D;
  text-shadow: 0 1px 0 #fff7;
}
.hero-section p {
  font-size: 1.25rem;
  color: #2A394D;
}
.hero-section .cta-primary {
  margin-top: 30px;
}

/* ------ FEATURES SECTION ------ */
.features-section,
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.features-section .content-wrapper > h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2A394D;
}
.feature-grid {
  justify-content: center;
  align-items: stretch;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

/* ------ SERVICES CARDS ------ */
.services-section .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(42,57,77,0.09);
  padding: 28px 22px;
  flex: 1 1 240px;
  max-width: 260px;
  min-width: 200px;
  transition: box-shadow 0.24s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.service-card .price {
  color: #FFD33D;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-top: 14px;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(42,57,77,0.15);
  transform: translateY(-4px) scale(1.035);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #fff 80%, #FFD33D 100%);
  color: #2A394D;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 700;
  margin: 10px auto 0 auto;
  display: inline-block;
  border: 2px solid #FFD33D;
  box-shadow: 0 2px 8px rgba(255,211,61,0.09);
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #FFD33D;
  color: #2A394D;
}

/* ------ TESTIMONIALS ------ */
.testimonials-section {
  background: #FAFBFD;
  padding: 56px 0 64px 0;
}
.testimonials-section h2 {
  text-align: center;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(42,57,77,0.12);
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 300px;
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  gap: 16px;
}
.star-rating {
  display: flex;
  flex-direction: row;
  gap: 3px;
  margin-bottom: 2px;
}
.star-rating img {
  width: 18px;
  height: 18px;
}
.testimonial-card p {
  color: #2A394D;
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: 1rem;
  color: #2A394D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 8px;
}

/* ------ CTA BANNER ------ */
.cta-section {
  background: linear-gradient(90deg, #2A394D 50%, #FFD33D 250%);
  color: #fff;
  padding: 56px 0;
  margin-bottom: 0;
}
.cta-section .cta-banner,
.cta-banner {
  background: #fff;
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 8px 36px 0 rgba(42,57,77,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-section h2,
.cta-banner h2 {
  color: #2A394D;
  font-size: 2rem;
}
.cta-section p,
.cta-banner p {
  color: #2A394D;
  font-size: 1.15rem;
}
.cta-primary {
  background: linear-gradient(90deg, #2A394D 60%, #FFD33D 180%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 12px 34px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(42,57,77,0.10);
  transition: background 0.23s, color 0.23s, box-shadow 0.19s, border 0.16s;
  display: inline-block;
  margin-top: 8px;
  border: 2px solid #FFD33D;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFD33D;
  color: #2A394D;
  border-color: #2A394D;
  box-shadow: 0 8px 32px 0 rgba(255,211,61,0.16);
}

/* ------ FOOTER ------ */
footer {
  background: linear-gradient(90deg, #F4F7F9 0%, #e4eefa 100%);
  border-top: 1px solid #e0e6ef;
  padding: 36px 0 16px 0;
  color: #2A394D;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #2A394D;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.19s, color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FFD33D;
  color: #2A394D;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #2A394D;
}
.footer-contact-item a {
  color: #2A394D;
  text-decoration: underline dotted;
}
.footer-copy {
  font-size: 0.95rem;
  color: #7A858D;
  margin-bottom: 0;
  text-align: center;
}

/* ------ COURSES, FAQ, & PROFILE CARDS ------ */
.learning-paths-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}
.detailed-course-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(42,57,77,0.09);
  min-width: 240px;
  max-width: 340px;
  padding: 32px 22px;
  margin-bottom: 20px;
  flex: 1 1 222px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.detailed-course-card h3 {
  font-size: 1.17rem;
  margin-bottom: 7px;
}
.detailed-course-card .price {
  color: #FFD33D;
  font-weight: bold;
  font-size: 1.12rem;
  margin-top: 8px;
}
.detailed-course-card:hover {
  box-shadow: 0 12px 32px 0 rgba(255,211,61,0.12);
  transform: translateY(-3px) scale(1.026);
}
.outcome-highlights ul {
  padding-left: 18px;
  margin-left: 4px;
  margin-top: 0;
}
.outcome-highlights li {
  margin-bottom: 8px;
  color: #2A394D;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 6px 0 rgba(42,57,77,0.07);
  padding: 20px 18px;
  margin-bottom: 0;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
  cursor: pointer;
  color: #2A394D;
}
.faq-item div {
  color: #2A394D;
  font-size: 0.98rem;
}
.support-cta {
  margin-top: 27px;
  font-size: 1.03rem;
  font-weight: 600;
  color: #2A394D;
}
.support-cta a {
  color: #FFD33D;
  text-decoration: underline;
}

/* ------ TEACHER PROFILES ------ */
.teacher-profiles {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.teacher-profile {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(42,57,77,0.09);
  min-width: 220px;
  max-width: 260px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.teacher-profile h3 {
  font-size: 1.10rem;
}
.teacher-profile p {
  font-size: 1rem;
  font-weight: 400;
}
.cert-badges {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.cert-badges img {
  width: 38px;
  height: auto;
}

/* ------ CONTACT & CONFIRMATION ------ */
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.confirmation-message {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(42,57,77,0.11);
  padding: 36px 20px 32px 20px;
  text-align: center;
}
.social-media-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.social-media-cta img {
  width: 36px;
  height: 36px;
}

/* ------ TEXT SECTION ------ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

/* ------ MODALS & ANIMATIONS ------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------ BUTTONS ------ */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
}

/* ------ COOKIE CONSENT BANNER ------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #2A394D;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 22px 18px 22px 18px;
  box-shadow: 0 -2px 18px 0 rgba(42,57,77,0.13);
  animation: fadeInUp 0.45s cubic-bezier(.5,1.2,.43,1.28);
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 0;
  max-width: 520px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: background 0.18s, color 0.12s;
}
.cookie-banner .accept-btn {
  background: #FFD33D;
  color: #2A394D;
  border: 2px solid #FFD33D;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #fff;
  color: #2A394D;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #2A394D;
  border: 2px solid #FFD33D;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #FFD33D;
  color: #2A394D;
}
.cookie-banner .settings-btn {
  background: #2A394D;
  color: #FFD33D;
  border: 2px solid #FFD33D;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #FFD33D;
  color: #2A394D;
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(42,57,77,0.56);
  animation: fadeIn 0.4s cubic-bezier(.44,1.14,.35,1.17);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #2A394D;
  border-radius: 18px;
  max-width: 430px;
  width: 94vw;
  padding: 36px 24px 26px 24px;
  box-shadow: 0 8px 42px 0 rgba(42,57,77,0.16);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeInUp 0.37s cubic-bezier(.54,1.07,.39,1.19);
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F4F7F9;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category-label {
  flex: 1 1 auto;
  font-weight: 600;
}
.cookie-modal .toggle {
  width: 42px; height: 24px;
  background: #e3eaf2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-modal .toggle .slider {
  background: #FFD33D;
  border-radius: 50%;
  width: 22px; height: 22px;
  margin-left: 2px;
  transition: margin 0.2s, background 0.2s;
}
.cookie-modal .toggle.checked {
  background: #FFD33D;
}
.cookie-modal .toggle.checked .slider {
  margin-left: 18px;
  background: #2A394D;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #606871;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 7px 24px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal .accept-btn {
  background: #FFD33D;
  color: #2A394D;
}
.cookie-modal .accept-btn:hover { background: #2A394D; color: #FFD33D; }
.cookie-modal .cancel-btn {
  background: #fff;
  color: #2A394D;
  border: 1.5px solid #FFD33D;
}
.cookie-modal .cancel-btn:hover { background: #FFD33D; color: #2A394D; }

/* ------ RESPONSIVE ------ */
@media (max-width: 991px) {
  .desktop-nav {
    gap: 17px;
  }
  .cta-section .cta-banner, .cta-banner {
    padding: 32px 12px;
  }
  .teacher-profiles { gap: 16px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  .section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .content-grid, .card-container, .feature-grid, .learning-paths-grid, .services-section .service-cards, .testimonials-slider, .teacher-profiles, .footer-contact {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-card, .detailed-course-card, .teacher-profile, .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .testimonial-card {
    gap: 10px;
    padding: 14px;
  }
  .cta-section {
    padding: 32px 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 30px 0 20px 0;
  }
  .features-section, .testimonials-section, .cta-section {
    padding: 18px 0 22px 0;
  }
  .feature-item, .service-card, .detailed-course-card, .teacher-profile {
    padding: 14px 9px !important;
    border-radius: 8px !important;
  }
  .cta-banner, .confirmation-message {
    padding: 10px 6px;
    border-radius: 10px;
  }
  .footer-contact {
    gap: 13px;
  }
}

/* ------ Miscellaneous ------ */
::-webkit-scrollbar { width: 10px; background: #F4F7F9; }
::-webkit-scrollbar-thumb { background: #e3eaf2; border-radius: 8px; }

/* Utility classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.gap-2 { gap: 16px; }

/* Prevent accidental absolute positioning for cards/text */
.card, .feature-item, .testimonial-card, .service-card, .detailed-course-card, .teacher-profile {
  position: relative !important;
}

/* Prevent overlapping - ensure spacing */
.card + .card, .feature-item + .feature-item, .service-card + .service-card, .testimonial-card + .testimonial-card, .detailed-course-card + .detailed-course-card, .teacher-profile + .teacher-profile {
  margin-top: 20px;
}

/* ------ Accessibility ------ */
:focus-visible {
  outline: 2px solid #FFD33D;
  outline-offset: 2px;
}

/* END OF FILE */
