/* ================== CSS 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,
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, 
main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #1D3557;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================ BRAND VARIABLES AND FONT-FACE ================= */
:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #F1FAEE;
  --neutral: #fff;
  --text-main: #1D3557;
  --text-secondary: #457B9D;
  --text-light: #F1FAEE;
  --shadow: 0 4px 16px rgba(29,53,87,0.10), 0 1.5px 8px rgba(69,123,157,0.10);
  --radius: 16px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --transition: 0.22s cubic-bezier(.68,-0.55,.27,1.55);
}
@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');

body, input, button, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: var(--accent);
  color: var(--text-main);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--text-main);
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

p, li, blockquote, cite {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--secondary);
}

/* ================ GENERAL SPACING & CONTAINER SIZING ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-md);
  flex: 1 1 300px;
  min-width: 260px;
}

.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: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 260px;
}

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

/* ================ HEADER & MAIN NAVIGATION ================= */
header {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(29,53,87,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: var(--neutral);
}
.main-nav img {
  height: 38px;
  margin-right: var(--space-lg);
  background: none;
  border-radius: 0;
}
.cta-btn {
  background: var(--secondary);
  color: var(--accent);
  padding: 10px 22px;
  border-radius: 32px 6px 32px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(69,123,157,0.12);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  margin-left: var(--space-md);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(29,53,87,0.16);
}

/* ================ MOBILE NAVIGATION ================= */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--accent);
  font-size: 2rem;
  padding: 6px 15px 8px 15px;
  border-radius: 8px;
  position: absolute;
  right: var(--space-sm);
  top: 14px;
  z-index: 100;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.42,0,.58,1);
  box-shadow: 0 2px 22px rgba(29,53,87,0.24);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  font-size: 2rem;
  align-self: flex-end;
  margin: 22px 24px 4px 0;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 36px 0 36px;
  gap: 22px;
  margin-top: var(--space-lg);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  padding: 12px 0 12px 3px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--neutral);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .main-nav img {
    margin-right: var(--space-md);
  }
}
@media (max-width: 900px) {
  .main-nav a, .main-nav .cta-btn {
    font-size: 0.97rem;
    padding: 8px 11px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    padding: var(--space-xs) 0;
    gap: 6px;
  }
  .main-nav a, .main-nav .cta-btn {
    font-size: 0.97rem;
    padding: 7px 9px;
  }
}
@media (max-width: 660px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================ HERO STYLES ================= */
.hero, .about-hero, .courses-hero, .instructors-hero, .blog-hero, .testimonials-hero, .contact-hero, .thank-you-message {
  padding: var(--space-xl) 0 var(--space-lg) 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  min-height: 340px;
  text-align: center;
}
.hero h1, .about-hero h1, .courses-hero h1, .instructors-hero h1, .blog-hero h1, .testimonials-hero h1, .contact-hero h1, .thank-you-message h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero .cta-btn {
  margin-top: var(--space-lg);
}

/* ================ FEATURES & COURSE GRIDS ================= */
.features {
  background: var(--neutral);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid li {
  background: var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
}
.feature-grid img {
  width: 40px;
  height: 40px;
}
.feature-grid h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

/* Courses overview and card grids */
.course-highlights, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.course-box, .course-card {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 24px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border 0.18s, box-shadow 0.18s;
}
.course-box:hover, .course-card:hover {
  border: 2.2px solid var(--secondary);
  box-shadow: 0 6px 22px rgba(29,53,87,0.18);
}
.course-card .category {
  margin-top: 8px;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 10px 4px 10px 4px;
  padding: 4px 14px;
  font-size: 0.93rem;
  align-self: flex-start;
  font-weight: 700;
}

/* ================ VALUES & ABOUT GRIDS ================ */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: var(--space-md);
}
.values-list li {
  padding-left: 14px;
  border-left: 4px solid var(--secondary);
  background: rgba(241, 250, 238, 0.90);
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.08rem;
}

.instructor-preview-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.instructor-snippet {
  background: var(--neutral);
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 14px;
  flex: 1 1 220px;
  min-width: 185px;
}
.team-grid .instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.instructor-card {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
  padding: 28px 20px 20px 20px;
  flex: 1 1 285px;
  min-width: 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border 0.18s, box-shadow 0.18s;
}
.instructor-card:hover {
  border: 2.2px solid var(--secondary);
  box-shadow: 0 6px 18px rgba(29,53,87,0.18);
}
.instructor-card ul {
  margin-top: 12px;
  padding-left: 14px;
}
.instructor-card li {
  font-size: 0.97rem;
  margin-bottom: 6px;
}

/* ================ CTA LINKS ================= */
.cta-link {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  text-decoration: underline;
  padding: 6px 0;
  transition: color var(--transition);
}
.cta-link:hover, .cta-link:focus {
  color: var(--secondary);
}

/* ================ TESTIMONIALS ================= */
.testimonial-row, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-md);
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 290px;
  padding: 26px 22px;
  margin-bottom: 20px;
  border: 2.2px solid var(--secondary);
  color: var(--text-main);
}
.testimonial-card p, .testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 7px;
}
.testimonial-card strong, .testimonial-card cite {
  color: var(--secondary);
  font-size: 1.02rem;
}
.testimonial-card cite {
  font-style: normal;
}

/* ================ FAQ & BLOG ================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--neutral);
  border-left: 4px solid var(--secondary);
  padding: 18px 18px 14px 22px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.faq-item h3 {
  color: var(--primary);
  margin-bottom: 7px;
  font-size: 1.07rem;
}
.faq-item p {
  font-size: 1rem;
}

/* BLOG LIST */
.blog-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.search-bar {
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 1rem;
  outline: none;
  transition: border var(--transition);
  margin-bottom: 10px;
}
.search-bar:focus {
  border-color: var(--primary);
}
.categories-filter {
  display: flex;
  gap: 13px;
  align-items: center;
}
.categories-filter span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.categories-filter a {
  background: var(--accent);
  border-radius: 8px;
  color: var(--secondary);
  font-weight: 500;
  padding: 4px 11px;
  font-size: 0.97rem;
  border: 1.3px solid var(--primary);
  transition: background var(--transition), color var(--transition);
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--primary);
  color: var(--accent);
}

.blog-excerpt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-sm);
}
.blog-excerpt {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--secondary);
  padding: 26px 20px 22px 22px;
  flex: 1 1 300px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border 0.18s, box-shadow 0.18s;
}
.blog-excerpt:hover {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 15px rgba(29,53,87,0.1);
}
.blog-excerpt h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.blog-excerpt a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
}
.blog-excerpt a:hover, .blog-excerpt a:focus {
  color: var(--primary);
}

/* ================ CONTACT SECTION ================= */
.address-details {
  background: var(--neutral);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: var(--space-md);
  border: 2px dashed var(--secondary);
}

/* ================ FOOTER ================= */
footer {
  background: var(--primary);
  color: var(--accent);
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-nav {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  justify-content: center;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition);
  padding: 7px 5px;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}
.footer-contact {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.6;
}
.footer-contact p {
  margin-bottom: 7px;
  color: var(--accent);
}
.footer-contact a {
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--accent);
}
.footer-contact img {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  margin-right: 6px;
}

/* ============ LEGAL POLICY PAGE SECTIONS =========== */
.legal-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-policy h1, .legal-policy h2 {
  color: var(--primary);
}
.legal-policy ul {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-left: 24px;
}
.legal-policy li {
  margin-bottom: 8px;
  list-style: disc;
}

/* ============ THANK YOU SECTION =========== */
.thank-you-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  background: var(--accent);
  border-radius: var(--radius);
}

.thank-you-message .cta-btn {
  margin-top: var(--space-lg);
}

/* ============ COOKIE CONSENT BANNER =========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--neutral);
  color: var(--primary);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -5px 24px rgba(29,53,87,0.20);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) 8vw var(--space-md) 8vw;
  align-items: center;
  animation: fadein 0.4s;
}
@keyframes fadein {
  from {transform: translateY(64px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner p {
  color: var(--primary);
  font-size: 1rem;
  max-width: 640px;
  text-align: center;
  margin-bottom: var(--space-xs);
}
.cookie-consent-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: 0;
}
.cookie-btn {
  border-radius: 10px 3px 10px 3px;
  background: var(--secondary);
  color: var(--accent);
  border: none;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 3px;
  box-shadow: 0 2px 5px rgba(69,123,157,0.08);
  transition: background var(--transition), color var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,53,87,0.36);
  animation: fadein 0.2s;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 28px 32px;
  max-width: 440px;
  width: 94vw;
  position: relative;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadein 0.22s;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  margin-left: var(--space-sm);
  cursor: pointer;
  padding: 0 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.cookie-modal-close:hover {
  color: var(--primary);
  background: var(--accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  margin-right: 4px;
}
.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

/* ================ ANIMATIONS & TRANSITIONS ================= */
@media (prefers-reduced-motion: no-preference) {
  .cta-btn, .cta-link, .main-nav a, .footer-nav a,
  .feature-grid li,
  .course-box, .course-card,
  .instructor-card, .blog-excerpt {
    transition: box-shadow 0.19s, border 0.16s, background 0.2s, color 0.2s;
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    padding-left: 4px;
  }
}
@media (max-width: 1024px) {
  .feature-grid, .course-highlights, .course-list, .testimonial-row, .testimonial-grid, .blog-excerpt-list, .team-grid .instructor-grid{
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .course-highlights, .course-list, .testimonial-row, .testimonial-grid, .blog-excerpt-list, .team-grid .instructor-grid{
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section{
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .footer-nav {
    gap: 14px;
  }
  .feature-grid li, .course-box, .course-card, .testimonial-card, .blog-excerpt, .instructor-card, .instructor-snippet {
    min-width: 180px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .thank-you-message {
    min-height: 280px;
    padding: var(--space-md);
  }
}
@media (max-width: 768px) {
  .hero, .about-hero, .courses-hero, .instructors-hero, .blog-hero, .testimonials-hero, .contact-hero, .thank-you-message {
    padding: var(--space-lg) 0 var(--space-md) 0;
    min-height: 200px;
  }
  .content-wrapper {
    gap: var(--space-sm);
  }
  .card-container, .content-grid, .feature-grid, .course-highlights, .course-list, .testimonial-row, .testimonial-grid, .blog-excerpt-list, .team-grid .instructor-grid {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  .cookie-consent-banner {
    padding: var(--space-sm);
  }
  .course-box, .course-card, .testimonial-card, .blog-excerpt, .instructor-card, .instructor-snippet {
    min-width: 90vw;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
  .container, .section {
    padding-left: 3px;
    padding-right: 3px;
  }
  .cookie-modal {
    padding: 18px 4vw;
  }
  .main-nav img {
    height: 32px;
  }
  .mobile-nav {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ============== UTILITIES & GEOMETRIC DECOR ============== */
.geometric-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

/* ======= END OF STYLE.CSS ======= */