/* 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #fff;
  color: #193C6D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #193C6D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #193C6D;
  outline-offset: 2px;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 16px;
}

/* GEOMETRIC STRUCTURED DESIGN SYSTEM */
:root {
  --primary: #193C6D;
  --secondary: #F2C230;
  --accent: #F8F8F8;
  --display-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* TYPOGRAPHY */
h1 {
  font-family: var(--display-font);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 600;
  color: var(--primary);
}
p, li, blockquote, table, span, label {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #13223a;
}
blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 18px;
  font-style: italic;
  margin-bottom: 12px;
  background: var(--accent);
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 3px solid var(--secondary);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  position: relative;
  padding: 7px 0;
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
}
header nav a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--secondary);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
header nav a:hover::after,
header nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}
.cta-button {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
  padding: 12px 34px;
  margin-left: 24px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px 2px rgba(25,60,109,0.07);
  border: 2px solid var(--primary);
  display: inline-block;
}
.cta-button.secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 18px 2px rgba(242,194,48,0.13);
  border-color: var(--secondary);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Section structure & SPACING per spec */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX Utility Classes  */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(25,60,109,0.07);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 420px;
  border: 2.2px solid var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 14px 0 rgba(25,60,109,0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HERO & GRID  */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 234px;
  min-width: 240px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 1.5px 14px 0 rgba(25,60,109,0.08);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid var(--accent);
  margin-bottom: 20px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

/* TEAMS & USPs */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 1.5px 10px rgba(25,60,109,0.08);
  padding: 24px 16px 16px 16px;
  flex: 1 1 250px;
  max-width: 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 2.2px solid var(--accent);
}
.expertise-icons {
  display: flex;
  gap: 14px;
}
.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.usp-item {
  flex: 1 1 200px;
  min-width: 235px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 10px rgba(25,60,109,0.08);
  padding: 22px 16px 16px;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 16px;
}
.testimonial-meta {
  font-size: 0.95em;
  font-style: italic;
  color: #193C6D;
  letter-spacing: 0.05em;
}
.before-after-quotes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.success-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.progress-charts {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 20px;
}
.progress-charts div {
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(25,60,109,0.06);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 164px;
}

/* FAQ Accordion List */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 1px 9px rgba(25,60,109,0.08);
  padding: 20px 16px;
  margin-bottom: 10px;
  border: 1.8px solid var(--accent);
}
.faq-item h2 {
  font-size: 1.16rem;
}

/* Blog/Categories */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 24px 0;
  max-width: 390px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(25,60,109,0.08);
  padding: 8px 14px;
}
.search-bar input[type="text"] {
  border: none;
  background: transparent;
  flex: 1 1 auto;
  font-size: 1rem;
  color: #193C6D;
  min-width: 0;
}
.categories-tags-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tag {
  display: inline-block;
  font-family: var(--display-font);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  padding: 3px 14px 3px 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.featured-articles article {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 1.5px 9px rgba(25,60,109,0.07);
  flex: 1 1 270px;
  min-width: 260px;
  padding: 18px 14px 16px 18px;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.read-more {
  color: var(--primary);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}
.read-more:hover, .read-more:focus {
  color: var(--secondary);
}

/* Newsletter Signup */
.newsletter-signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.newsletter-signup-form input[type="email"] {
  border-radius: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 2px solid var(--accent);
  font-size: 1rem;
  min-width: 140px;
  max-width: 220px;
}
.newsletter-signup-form button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 10px;
  font-family: var(--display-font);
  font-weight: 600;
  border: 2px solid var(--secondary);
  font-size: 1.01rem;
  padding: 10px 26px;
  transition: background 0.2s, color 0.2s;
}
.newsletter-signup-form button:hover, .newsletter-signup-form button:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cta-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.06rem;
  margin-top: 8px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  border: 1px solid var(--accent);
  padding: 12px 10px;
  text-align: center;
}
th {
  background: var(--primary);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.05rem;
}
td {
  background: var(--accent);
  color: var(--primary);
}

/* Contact Information */
.contact-info-inline, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 14px;
}
.contact-info-inline img, .contact-info img {
  vertical-align: middle;
  margin-right: 7px;
  width: 22px;
  height: 22px;
}

/* Social share */
.social-share-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.social-share-links a {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(25,60,109,0.11);
}
.social-share-links a:hover, .social-share-links a:focus {
  background: var(--secondary);
}
.social-share-links img {
  width: 22px;
  height: 22px;
}

/* Confirmation message */
.confirmation-message {
  background: var(--accent);
  border-radius: 14px;
  padding: 18px 14px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #fff;
  border-top: 3px solid var(--secondary);
  padding: 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
footer nav a {
  font-family: var(--display-font);
  font-size: 0.97rem;
  color: var(--primary);
  opacity: 0.92;
  transition: color 0.2s, opacity 0.21s;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-meta {
  color: #6b7ca6;
  font-size: 0.97rem;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 170;
  box-shadow: 0 1.5px 12px rgba(25,60,109,0.10);
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 202;
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(.7,.3,0,1);
  box-shadow: 0 6px 24px rgba(25,60,109,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--primary);
  margin: 26px 0 0 22px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 205;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  font-family: var(--display-font);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  min-width: 188px;
  margin-right: 12px;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -1.5px 16px 0 rgba(25,60,109,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  z-index: 2500;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(.85,.12,0,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 20px;
}
.cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 9px;
  border: none;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  margin-right: 4px;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,60,109, 0.32);
  z-index: 2550;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 28px rgba(25,60,109,0.12);
  padding: 36px 32px 28px 32px;
  max-width: 400px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookiePopIn 0.41s cubic-bezier(0.7,0,0,1);
}
@keyframes cookiePopIn {
  0% {scale: 0.77; opacity: 0;}
  80% {scale: 1.05; opacity: 1;}
  100% {scale: 1; opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.23rem;
  font-family: var(--display-font);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--display-font);
  color: var(--primary);
}
.cookie-toggle {
  width: 44px;
  height: 26px;
  border-radius: 14px;
  background: var(--accent);
  border: 1.5px solid var(--secondary);
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
  margin-left: 10px;
  outline: none;
  vertical-align: middle;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--secondary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.18s cubic-bezier(.9,.07,.1,1);
  transform: translateX(0);
}
.cookie-toggle[aria-checked="true"]::after {
  background: var(--primary);
  transform: translateX(18px);
}
.cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-size: 1rem;
  font-family: var(--display-font);
  font-weight: 600;
  border-radius: 9px;
  padding: 8px 22px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .cookie-category[aria-disabled="true"] label {
  opacity: 0.6;
}

/* Decorative geometric elements example (optional) */
.geometric-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* SECTION/BLOCK Spacing
   min 20px between cards, 24px for main feature/testimonials
*/
section > .container > .content-wrapper > * + * {
  margin-top: 24px;
}
.card + .card, .feature + .feature, .usp-item + .usp-item, .testimonial-card + .testimonial-card {
  margin-left: 0;
}

/* Layout helpers */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.module {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(25,60,109,0.08);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 16px 14px 14px 18px;
  border: 1.7px solid var(--accent);
  margin-bottom: 20px;
}
.key-learning-objectives ul,
.progress-bar-section ul,
.success-stats ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.bonus-content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.bonus-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(25,60,109,0.07);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 16px 12px 12px 16px;
  border: 1.7px solid var(--accent);
  margin-bottom: 20px;
}
.course-structure-timeline ul {
  list-style: decimal inside;
  margin-bottom: 20px;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .testimonials-slider, .testimonial-cards, .featured-articles, .content-grid, .feature-grid, .usp-grid, .team-bios, .bonus-content-grid, .module-list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .team-member, .usp-item, .feature, .card, .module, .bonus-item, .testimonial-card {
    min-width: 220px;
    max-width: 100%;
  }
}

/* RESPONSIVE MOBILE STYLES */
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.65rem;
    letter-spacing: -0.5px;
  }
  h2 {
    font-size: 1.24rem;
    letter-spacing: -0.02em;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    gap: 16px;
  }
  .cta-button, .cta-button.secondary {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  section, .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .feature-grid, .usp-grid, .testimonial-slider, .testimonial-cards, .module-list, .bonus-content-grid, .featured-articles, .team-bios, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info-inline, .contact-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .newsletter-signup-form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
  }
  .module, .feature, .usp-item, .bonus-item, .testimonial-card, .card, .team-member, .featured-articles article {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .progress-charts {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .cta-button {
    display: none;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 11px;
    gap: 13px;
  }
  .cookie-banner .cookie-banner-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .progress-charts div, .featured-articles article, .testimonial-card, .team-member {
    min-width: 0;
  }
}

/* ANIMATIONS/MICRO-INTERACTIONS */
.card, .feature, .usp-item, .testimonial-card, .bonus-item, .module, .team-member, .featured-articles article {
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .feature:hover, .usp-item:hover, .testimonial-card:hover, .bonus-item:hover, .module:hover, .team-member:hover, .featured-articles article:hover {
  box-shadow: 0 8px 28px 3px rgba(25,60,109,0.14);
  transform: translateY(-4px) scale(1.025);
}

/* FORM ELEMENTS */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  color: #193C6D;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--primary);
}
button, input[type="submit"] {
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 30px;
  border: none;
  transition: background 0.2s, color 0.2s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Z-INDEX/LAYERING (Keep mobile menu and cookie banner on top) */
header, main, footer {
  position: relative;
  z-index: 1;
}

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

/* ACCENT BORDERS FOR GEOMETRIC FEEL */
.card, .feature, .testimonial-card, .module, .bonus-item, .team-member, .usp-item {
  border: 2px solid var(--accent);
  border-top: 5px solid var(--secondary);
}

/* Prevent absolute positioning for content cards (ONLY for .geometric-decoration used decoratively if needed) */

/* Accessibility & Visual Consistency for Testimonials */
.testimonial-card, .testimonial-meta, .testimonial-cards, .before-after-quotes, .testimonial-slider {
  color: #193C6D;
  background: #fff;
}

/* End of CSS */
