/* ---- CSS RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #23262a;
  color: #f5f6fa;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  /* To give surfaces a 'matte' feel */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F59E42;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1.25em;
}
li + li {
  margin-top: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #f5f6fa;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, .text-section, .faq-search-bar {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong {
  color: #F59E42;
}
blockquote {
  font-style: italic;
  color: #23262a;
  background: #f5f6fa;
  padding: 18px 28px;
  border-left: 4px solid #F59E42;
  border-radius: 8px;
  margin: 20px 0;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #2e3237;
  border-radius: 10px;
  box-shadow: 0 1.5px 12px 0 rgba(18,21,26,.10), 0 0.5px 2px 0 rgba(87, 87, 87, 0.04);
  padding: 24px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(245,158,66, 0.10),0 3px 12px 0 rgba(0,0,0,0.16);
}
.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;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  background: #f5f6fa;
  color: #23262a;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px 0 rgba(87,87,87,0.09);
  position: relative;
  min-width: 0;
}

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

/* ---- HEADER ---- */
header {
  background: #23262a;
  box-shadow: 0 1px 0 #1a1c1e;
  position: sticky;
  top: 0;
  z-index: 1001;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 24px;
}
nav img {
  height: 44px;
  margin-right: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #f5f6fa;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  display: inline-block;
}
nav a:hover, nav a:focus {
  background: #384049;
  color: #F59E42;
  text-decoration: none;
}
nav .cta-btn {
  background: #F59E42;
  color: #23262a;
  font-weight: 700;
  border-radius: 8px;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(245,158,66,.12);
  transition: background 0.20s, color 0.17s;
}
nav .cta-btn:hover,
nav .cta-btn:focus {
  background: #fff;
  color: #374151;
  text-decoration: none;
}

/* --- MOBILE MENU -- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f6fa;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #374151;
  color: #F59E42;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23262a;
  box-shadow: 2px 0 40px 0 rgba(37,35,41,0.77);
  z-index: 1200;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.5,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 0 24px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #1a1c1e;
  color: #f5f6fa;
  border: none;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 8px;
  padding: 10px 13px;
  cursor: pointer;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F59E42;
  background: #2b2e32;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
}
.mobile-nav a {
  color: #f5f6fa;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 16px 0;
  border-bottom: 1px solid #374151;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F59E42;
  text-decoration: underline;
}

@media (max-width: 1023px) {
  nav > a:not(.cta-btn), nav > img {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---- HERO & GENERAL SECTIONS ---- */
.hero-section,
.cta-section,
.about-story-section,
.blog-intro-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(112deg, #23262a 77%, #353a40 100%);
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(55,65,81,0.09);
  margin-bottom: 60px;
  padding: 48px 28px;
}
.hero-section h1 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #F5F6FA;
}
.cta-btn {
  display: inline-block;
  background: #F59E42;
  color: #23262a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(245,158,66,.10);
  transition: background 0.20s, color 0.18s, transform 0.15s;
  margin-top: 20px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #1a1c1e;
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
.preview-cta-btn,
.enroll-btn,
.read-more {
  display: inline-block;
  background: #23262a;
  color: #F59E42;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #F59E42;
  padding: 10px 28px;
  border-radius: 8px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, border 0.18s;
  box-shadow: 0 1px 5px 0 rgba(245,158,66,0.07);
}
.preview-cta-btn:hover, .preview-cta-btn:focus,
.enroll-btn:hover, .enroll-btn:focus,
.read-more:hover, .read-more:focus {
  background: #F59E42;
  color: #23262a;
  border-color: #fff;
}

/* ---- FEATURES ---- */
.features-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.features-section li {
  display: flex;
  align-items: center;
  background: #2e3237;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 1.5px 8px 0 rgba(18,21,26,0.04);
  color: #F5F6FA;
  margin-bottom: 0;
  gap: 14px;
  letter-spacing: 0.02em;
}
.features-section img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  filter: grayscale(0.6) brightness(1.2);
}

/* ---- COURSES PREVIEW / CARDS ---- */
.courses-preview .courses-list, .courses-section .courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.course-card {
  flex: 1 1 300px;
  min-width: 260px;
  background: #26282d;
  color: #f5f6fa;
  border-radius: 9px;
  padding: 32px 24px;
  box-shadow: 0 3px 18px 0 rgba(87,87,87,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1.5px solid #353a40;
  transition: border 0.16s, box-shadow 0.19s;
  position: relative;
}
.course-card h3 {
  font-size: 1.28rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.level-tag {
  background: #1a1c1e;
  color: #F59E42;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 2px 13px;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.course-card ul {
  margin-top: 16px;
  margin-bottom: 10px;
  padding-left: 22px;
}
.course-card:hover {
  border: 1.5px solid #F59E42;
  box-shadow: 0 8px 33px 0 rgba(245,158,66,0.13);
}

/* ---- TABLES ---- */
.comparison-table,
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  overflow: hidden;
  background: #23262a;
  color: #f5f6fa;
  box-shadow: 0 1.5px 10px 0 rgba(18,21,26,0.06);
}
.comparison-table th, .cookie-table th {
  background: #353a40;
  color: #F59E42;
  text-align: left;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.comparison-table td, .cookie-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #353a40;
  font-size: 1rem;
}
.comparison-table tbody tr:last-child td, .cookie-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td, .cookie-table tr:hover td {
  background: #26282d;
  color: #F59E42;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.testimonial-card {
  flex: 1 0 260px;
  font-size: 1.1rem;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.testimonial-meta {
  margin-top: 12px;
  font-size: 0.97rem;
  color: #374151;
  font-style: italic;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  background: #2e3237;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(55,65,81,0.15);
  padding: 48px 22px 30px 28px;
}
.faq-search-bar {
  width: 100%;
  max-width: 370px;
  background: #23262a;
  color: #f5f6fa;
  border: 1.5px solid #353a40;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 18px;
  margin: 20px 0 32px 0;
  outline: none;
  transition: border 0.15s, box-shadow 0.13s;
}
.faq-search-bar:focus {
  border: 1.5px solid #F59E42;
  box-shadow: 0 2px 14px 0 rgba(245,158,66,0.07);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #23262a;
  padding: 21px 20px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 7px 0 rgba(87,87,87,0.06);
  border-left: 5px solid #F59E42;
}
.faq-item h3 {
  color: #F59E42;
  margin-bottom: 6px;
}

/* ---- BLOG ---- */
.recent-posts-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-post-card {
  background: #26282d;
  border-radius: 9px;
  margin-bottom: 24px;
  padding: 26px 20px 23px 26px;
  color: #f5f6fa;
  box-shadow: 0 2px 7px rgba(55,65,81,0.08);
  border: 1.5px solid #353a40;
  transition: border 0.13s, box-shadow 0.13s;
}
.blog-post-card:hover {
  border: 1.5px solid #F59E42;
  box-shadow: 0 5px 23px 0 rgba(245,158,66,0.08);
}
.blog-post-card h3 {
  font-size: 1.17rem;
  margin-bottom: 6px;
  color: #F59E42;
}
.blog-post-card .read-more {
  margin-top: 14px;
  padding: 10px 20px;
}

/* ---- TEAM CARDS ---- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member-card {
  flex: 1 1 260px;
  background: #26282d;
  color: #f5f6fa;
  border-radius: 9px;
  padding: 24px 18px;
  box-shadow: 0 2px 10px 0 rgba(55,65,81,0.08);
  border: 1.5px solid #353a40;
  margin-bottom: 20px;
  transition: border 0.14s, box-shadow 0.13s;
}
.team-member-card h3 {
  color: #F59E42;
  margin-bottom: 8px;
}
.team-member-card:hover {
  border: 1.5px solid #F59E42;
  box-shadow: 0 5px 21px 0 rgba(245,158,66,0.08);
}

/* ---- CONTACT CARDS ---- */
.contact-details-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.contact-card {
  flex: 1 1 180px;
  background: #26282d;
  color: #F59E42;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(245,158,66,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding: 20px 15px;
  margin-bottom: 20px;
  border: 1.5px solid #353a40;
}
.contact-card img {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
}
.text-section {
  margin-top: 17px;
  font-size: 1.03rem;
  color: #f5f6fa;
}
.map-embed {
  margin-top: 34px;
  background: #353a40;
  color: #F59E42;
  padding: 22px 19px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.12rem;
  box-shadow: 0 2px 12px 0 rgba(18,21,26,0.06);
}

/****** FOOTER ******/
footer {
  background: #1a1c1e;
  color: #f5f6fa;
  font-size: 0.98rem;
  letter-spacing: 0.015em;
  margin-top: 60px;
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1.5px solid #23262a;
  padding: 38px 0 18px 0;
  margin-bottom: 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-menu a {
  color: #F59E42;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.95;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 7px;
}
.footer-social a {
  display: inline-block;
  background: #F59E42;
  color: #23262a;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.16s;
  overflow: hidden;
}
.footer-social a img {
  margin: 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  filter: grayscale(0.3) brightness(1.2);
  margin-top: 7px;
}
.footer-social a:hover, .footer-social a:focus {
  background: #fff;
  color: #F59E42;
}
.copyright {
  width: 100%;
  margin-top: 22px;
  font-size: 0.93rem;
  color: #697076;
}

/* ---- POLICY SECTIONS, TABLES ---- */
.policy-section {
  background: #23262a;
  color: #f5f6fa;
  padding: 48px 30px;
  border-radius: 11px;
  box-shadow: 0 3px 14px 0 rgba(55,65,81,0.10);
  margin-top: 22px;
}
.policy-section h1 {
  color: #F59E42;
  margin-bottom: 18px;
}
.policy-section h2 {
  color: #F59E42;
  margin-bottom: 7px;
}
.policy-section .text-section {
  margin-bottom: 13px;
}

/* ---- MISC ---- */
.thank-you-section {
  text-align: center;
  padding: 58px 20px;
  background: linear-gradient(112deg, #23262a 70%, #353a40 100%);
  border-radius: 10px;
}
.thank-you-section h1 {
  margin-bottom: 18px;
}
.thank-you-section p {
  margin: 17px 0;
}

/******* COOKIE CONSENT BANNER *******/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1a1c1e;
  color: #f5f6fa;
  box-shadow: 0 -2px 28px 0 rgba(55,65,81,0.25);
  z-index: 4000;
  padding: 24px 16px 22px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  font-size: 1rem;
  animation: fadeInUp 0.5s cubic-bezier(.9,0,.2,1);
}
.cookie-banner-content {
  max-width: 600px;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #23262a;
  color: #F59E42;
  border: 2px solid #F59E42;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  padding: 9px 18px;
  cursor: pointer;
  margin-right: 2px;
  margin-top: 0;
  transition: all 0.16s cubic-bezier(.45,0,.2,1);
}
.cookie-btn.cookie-accept {
  background: #F59E42;
  color: #23262a;
  border-color: #F59E42;
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: #fff;
  color: #374151;
}
.cookie-btn.cookie-reject {
  background: #23262a;
  color: #F59E42;
  border-color: #F59E42;
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #F59E42;
  color: #23262a;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #F59E42;
  border: 2px solid #F59E42;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #23262a;
  color: #fff;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}

/******* COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(23,25,29,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.4s cubic-bezier(.5,0,.2,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #23262a;
  color: #f5f6fa;
  border-radius: 16px;
  box-shadow: 0 6px 36px 0 rgba(23,25,29,0.34);
  padding: 40px 30px 32px 30px;
  min-width: 310px;
  max-width: 98vw;
  max-height: 98vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #F59E42;
  font-size: 1.35rem;
  margin-bottom: 7px;
}
.cookie-preference-group {
  margin-bottom: 20px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  margin-bottom: 10px;
  gap: 9px;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #F59E42;
}
.toggle-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #353a40;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.toggle-switch:checked {
  background: #F59E42;
}
.toggle-switch:after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s cubic-bezier(.4,0,.2,1);
}
.toggle-switch:checked:after {
  left: 20px;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 23px;
  background: #23262a;
  color: #f5f6fa;
  border: none;
  font-size: 1.34rem;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.16s, background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F59E42;
  background: #1a1c1e;
}

/****** RESPONSIVENESS ******/
@media (max-width: 1023px) {
  .footer-section {
    flex-direction: column;
    gap: 18px;
    padding: 28px 0 10px 0;
    align-items: flex-start;
  }
  .team-list, .courses-list, .courses-grid, .contact-details-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px !important;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 98%;
  }
  .container {
    padding: 0 9px;
  }
  nav {
    padding: 0 9px;
    min-height: 54px;
    gap: 9px;
  }
  .hero-section, .about-story-section, .cta-section {
    padding: 29px 9px 29px 12px;
    border-radius: 8px;
  }
  .section, .policy-section, .faq-section, .blog-intro-section {
    padding: 22px 5px;
  }
  .course-card, .team-member-card, .blog-post-card, .contact-card {
    padding: 20px 9px !important;
    border-radius: 8px;
  }
  .features-section ul, .benefits-section ul {
    gap: 10px;
  }
  .content-wrapper {
    padding: 24px 4px;
    border-radius: 6px;
  }
  .content-grid, .card-container, .team-list, .courses-list, .courses-grid, .contact-details-cards {
    flex-direction: column;
    gap: 18px !important;
  }
  .testimonial-card {
    padding: 13px 8px;
    border-radius: 8px;
  }
  .map-embed {
    padding: 12px 7px;
    font-size: 1rem;
    border-radius: 7px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 8px 16px 8px;
    border-radius: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 7px 13px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* ---- FLEXBOX SPACING SENTRY (MANDATORY CLASSES) ---- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/* Industrial Modern Metallic Accent Styles */
.card, .footer-section, .policy-section, .faq-section, .contact-card, .blog-post-card, .course-card {
  border: 1.5px solid #353a40;
  box-shadow: 0 2px 15px 0 rgba(84,88,92, 0.08);
}
.card::before, .course-card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,158,66,0.07) 0%, rgba(55,65,81,0.06) 100%);
}

/* Hide ::before on mobile for perf */
@media (max-width: 600px) {
  .card::before, .course-card::before, .testimonial-card::before {
    display: none;
  }
}

/* --- FOCUS VISIBILITY --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #F59E42;
  outline-offset: 2px;
}

/**** SCROLLBAR STYLING ****/
*::-webkit-scrollbar {
  width: 11px;
  background: #23262a;
}
*::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 6px;
  border: 2.5px solid #23262a;
}
*::-webkit-scrollbar-thumb:hover {
  background: #F59E42;
}

/**** INDUSTRIAL FONT LOADING (WEB FONTS) ****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

body, input, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1,h2,h3,h4,h5,h6, .cta-btn, nav a, .level-tag {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/**** MODERN MICRO-INTERACTIONS ****/
.cta-btn, .preview-cta-btn, .enroll-btn, .read-more {
  transition: background 0.18s, color 0.13s, transform 0.17s, border 0.13s;
}
.card, .course-card, .blog-post-card, .team-member-card, .contact-card, .testimonial-card {
  transition: border 0.17s, box-shadow 0.18s, transform 0.17s;
}
.card:hover, .course-card:hover, .blog-post-card:hover, .team-member-card:hover, .contact-card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.011);
  box-shadow: 0 8px 28px 0 rgba(245,158,66,0.11);
  border-color: #F59E42;
}

/**** Z-INDEX/STACKING FOR LAYERED NAV & COOKIE ****/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 4000;
}
