/* RESET & BASELINE */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F2F2F2;
  background: #143046;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FONT IMPORT (if supported) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #F2F2F2;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

p, li, ul, ol, label, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
a {
  color: #38A7C7;
  text-decoration: none;
  transition: color 0.2s; 
  font-weight: 500;
}
a:hover, a:focus {
  color: #ffd35e;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* GENERAL LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #1c4260;
  border-radius: 14px;
  box-shadow: 0 4px 34px 0 rgba(24,144,195,0.14), 0 1.5px 6px 0 rgba(20,48,70,0.13);
  transition: box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 6px 44px 0 rgba(24,144,195,0.24), 0 2px 10px 0 rgba(20,48,70,0.15);
  background: #244364;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAFAFB;
  color: #143046;
  box-shadow: 0 2px 12px 0 rgba(20,48,70,0.14);
  border-radius: 12px;
  min-width: 260px;
  max-width: 370px;
  transition: transform 0.18s, box-shadow 0.16s;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 38px 0 rgba(56,167,199,0.15);
}
.testimonial-card .rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.testimonial-card .author {
  font-size: 0.98em;
  font-weight: 600;
  color: #38A7C7;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* HEADER & NAVIGATION */
header {
  background: #181F25;
  box-shadow: 0 2px 12px 0 rgba(20,48,70,0.11);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px 14px 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #F2F2F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #38A7C7;
  background: #244364;
  text-decoration: none;
}
.cta-btn {
  display: inline-block;
  background: #38A7C7;
  color: #143046;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 28px;
  font-size: 1.04rem;
  margin-left: 14px;
  box-shadow: 0 1.5px 6px 0 rgba(20,48,70,0.11);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffd35e;
  color: #143046;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 22px 0 rgba(56,167,199,0.12);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #38A7C7;
  font-size: 2.1rem;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 999;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #38A7C7;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 48, 70, 0.96);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #ffd35e;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 20px 10px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-close:focus { outline: 2px solid #ffd35e; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 40px;
}
.mobile-nav a {
  color: #F2F2F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 8px 4px;
  border-radius: 8px;
  width: calc(100vw - 40px);
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #244364;
  color: #ffd35e;
}
@media (max-width: 1024px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
} 
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(115deg, #143046 80%, #38A7C7 120%);
  padding: 54px 0 64px 0;
  box-shadow: 0 2px 30px 0 rgba(20,48,70,0.10);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 16px 0 0 0;
}
.hero h1 {
  color: #ffd35e;
}
.hero p {
  color: #F2F2F2;
  font-size: 1.16rem;
  margin-bottom: 18px;
}

/* FEATURES SECTIONS */
.features {
  background: #1c4260;
  padding: 40px 0;
  border-radius: 18px;
  margin-bottom: 60px !important;
  box-shadow: 0 2px 18px 0 rgba(56,167,199,0.12);
}
.features h2 { color: #ffd35e; }
.features .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}
.features ul, .features ol {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(20, 48, 70, .09);
  border-radius: 10px;
  padding: 12px 16px;
  color: #F2F2F2;
  font-weight: 500;
  font-size: 1.03em;
  letter-spacing: 0.01em;
}
.features li img {
  width: 36px; height: 36px;
  filter: drop-shadow(0 1px 4px rgba(56,167,199,.11));
}
.usp-grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 30px;
  margin-top: 18px;
}
.usp-grid > div {
  flex: 1 1 270px;
  background: #244364;
  padding: 24px;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(56,167,199,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 340px;
}
.usp-grid h3 {
  color: #38A7C7;
  margin-bottom: 6px;
}
.usp-grid img {
  margin-bottom: 14px;
  width: 42px; height: 42px;
}

/* COURSE CARDS & SERVICES */
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.course-card {
  background: #244364;
  color: #F2F2F2;
  border-left: 4px solid #38A7C7;
  border-radius: 10px;
  min-width: 260px;
  max-width: 340px;
  padding: 22px 24px 20px 20px;
  margin-bottom: 20px;
  margin-right: 16px;
  box-shadow: 0 4px 16px 0 rgba(20,48,70,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border 0.2s, box-shadow 0.21s;
}
.course-card h3 { color: #ffd35e; font-size: 1.14em; margin-bottom: 9px; }
.course-card:hover { border-left: 4px solid #ffd35e; box-shadow: 0 8px 30px 0 rgba(56,167,199,0.16); }

/* ADDITIONAL LAYOUTS */
.articles .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  list-style: none;
}
.blog-list li {
  background: #244364;
  padding: 18px 22px 20px 22px;
  border-radius: 12px;
  color: #F2F2F2;
  box-shadow: 0 2px 8px 0 rgba(56,167,199,0.08);
  transition: box-shadow 0.21s;
}
.blog-list li:hover { box-shadow: 0 7px 30px 0 rgba(56,167,199,0.18); }
.popular-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
  font-size: 1.03em;
}
.popular-tags a {
  background: #143046;
  color: #ffd35e;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98em;
  transition: background 0.17s, color 0.18s;
}
.popular-tags a:hover { background: #ffd35e; color: #143046; }

/* ACCORDION/FAQ */
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-list h3 {
  cursor: pointer;
  color: #38A7C7;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 3px;
  transition: color 0.19s;
}
.accordion-list h3:hover {
  color: #ffd35e;
}
.accordion-list p {
  color: #F2F2F2;
  font-size: 1rem;
}

.support-prompt {
  background: #244364;
  padding: 16px 22px;
  border-radius: 10px;
  margin-top: 8px;
}
.support-prompt strong {
  color: #ffd35e;
  font-weight: 700;
}

/* CONTACT PAGE */
.contact .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info, .map-location {
  flex: 1 1 280px;
  min-width: 230px;
  background: #244364;
  color: #F2F2F2;
  padding: 18px 23px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.contact-info p, .map-location p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.04em;
}
.contact-info img, .map-location img {
  width: 23px; height: 23px;
}

/* LEGAL PAGE */
.legal .content-wrapper,
.thank-you .content-wrapper,
.about .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1c4260;
  padding: 26px 22px;
  border-radius: 13px;
  color: #F2F2F2;
  box-shadow: 0 2px 10px 0 rgba(56,167,199,.09);
  margin-bottom: 22px;
}
.legal ol, .legal ul {
  margin: 14px 0 18px 26px;
  color: #ffd35e;
}
.legal li { margin-bottom: 12px; }

/* CALL TO ACTION */
.call_to_action {
  background: linear-gradient(100deg, #143046 85%, #38A7C7 150%);
  border-radius: 17px;
  margin-bottom: 60px;
  box-shadow: 0 4px 22px 0 rgba(56,167,199,0.15);
  padding: 36px 0 41px 0;
}
.call_to_action .container {
  align-items: center;
}
.call_to_action .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  color: #ffd35e;
  text-align: center;
  justify-content: center;
}
.call_to_action h2 {
  color: #ffd35e;
}
.call_to_action p {
  color: #F2F2F2;
}
.call_to_action .cta-btn {
  box-shadow: 0 2px 8px 0 rgba(255,211,94,0.22);
}

/* FOOTER */
footer {
  background: #143046;
  color: #F2F2F2;
  padding: 36px 0 22px 0;
  border-top: 1px solid #244364;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px 60px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: #38A7C7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  min-width: 225px;
  gap: 4px;
}
.footer-contact h3 { color: #ffd35e; margin-bottom: 3px;}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  margin-bottom: 0;
}
.footer-contact img {
  width: 19px;
}
.footer-contact a {
  color: #38A7C7;
  font-weight: 500;
}
.footer-contact a:hover { color: #ffd35e; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.footer-links a {
  color: #ffd35e;
  text-decoration: none;
  font-weight: 500;
  font-size: .99em;
}
.footer-links a:hover { color: #38A7C7; text-decoration: underline;}
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(56,167,199,.13));
  transition: filter 0.2s, transform 0.18s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 2px 20px #ffd35e);
  transform: scale(1.14);
}

/* ACCREDITATION LOGOS */
.accreditation-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}
.accreditation-logos img {
  width: 82px; height: auto;
  filter: drop-shadow(0 1px 10px rgba(56,167,199,0.12));
}

/* THANK-YOU SECTION */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 21px;
  background: #244364;
}
.thank-you h1 {
  color: #38A7C7;
}
.thank-you ul {
  margin: 17px 0 0 0;
  list-style: disc inside;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container, footer .container {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-brand, .footer-contact, .footer-links, .footer-social {
    margin-bottom: 15px;
  }
}
@media (max-width: 800px) {
  .features .content-wrapper, .services .content-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .usp-grid {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .contact .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .hero .content-wrapper {
    gap: 22px;
    padding: 0;
  }
  .footer-social {
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .container, footer .container {
    padding: 0 9px;
    gap: 30px;
  }
  .section, .features, .hero, .call_to_action {
    padding: 24px 0 28px 0;
  }
  .testimonial-card {
    min-width: 150px;
    max-width: 100%;
    padding: 15px 10px;
  }
  .course-card {
    padding: 16px 10px 14px 10px;
    min-width: 80vw;
    max-width: 100vw;
  }
}
@media (max-width: 420px) {
  .footer-contact p,
  .footer-brand,
  .footer-social a img { font-size: 0.9em; width: 22px; }
}

/* HOVER/ACTIVE TRANSITIONS & MICRO-INTERACTIONS */
button, .cta-btn, .main-nav a, .mobile-nav a, .course-card, .testimonial-card, .card {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181F25;
  color: #F2F2F2;
  width: 100vw;
  padding: 20px 18px;
  z-index: 22222;
  box-shadow: 0 -2px 16px 0 rgba(20,48,70,.16);
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.38s cubic-bezier(.7,.01,.22,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(140%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  max-width: 700px;
  color: #F2F2F2;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
}
.cookie-banner__btn--accept {
  background: #38A7C7;
  color: #143046;
  box-shadow: 0 1.5px 8px 0 rgba(56,167,199,0.08);
}
.cookie-banner__btn--accept:hover, .cookie-banner__btn--accept:focus {
  background: #ffd35e;
  color: #143046;
}
.cookie-banner__btn--reject {
  background: #FFD35E;
  color: #143046;
}
.cookie-banner__btn--reject:hover, .cookie-banner__btn--reject:focus {
  background: #38A7C7;
  color: #F2F2F2;
}
.cookie-banner__btn--settings {
  background: #143046;
  color: #38A7C7;
  border: 1.5px solid #38A7C7;
}
.cookie-banner__btn--settings:hover, .cookie-banner__btn--settings:focus {
  background: #244364;
  color: #FFD35E;
}

@media (max-width: 690px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .97em;
    padding: 16px 6px 13px 6px;
    align-items: flex-start;
  }
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(8,18,32,0.76);
  z-index: 22224;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal__panel {
  background: #181F25;
  padding: 32px 26px 27px 26px;
  border-radius: 19px;
  min-width: 280px;
  max-width: 96vw;
  min-height: 220px;
  box-shadow: 0 6px 38px 0 rgba(56,167,199,0.18);
  color: #F2F2F2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPopIn 0.28s cubic-bezier(.93,.01,.22,1);
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.94) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #FFD35E;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #244364;
  color: #38A7C7;
}
.cookie-modal__subtitle {
  color: #38A7C7;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.cookie-modal__categories {
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin: 10px 0 18px 0;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal__toggle {
  position: relative;
  width: 48px; height: 26px;
  background: #244364;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal__toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal__toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #FFD35E;
  transition: transform 0.15s;
}
.cookie-modal__toggle.enabled {
  background: #38A7C7;
}
.cookie-modal__toggle.enabled:before {
  background: #143046;
  transform: translateX(22px);
}
.cookie-modal__category label {
  color: #F2F2F2;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal__category--essential label {
  color: #FFD35E;
  font-weight: 700;
}
.cookie-modal__footer {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal__save-btn {
  background: #38A7C7;
  color: #143046;
  padding: 10px 22px;
  border-radius: 7px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02em;
}
.cookie-modal__save-btn:hover, .cookie-modal__save-btn:focus { background: #FFD35E; color: #143046; }
.cookie-modal__cancel-btn {
  background: #244364;
  color: #FFD35E;
  padding: 10px 16px;
  border-radius: 7px;
  border: none;
  font-weight: 600;
  font-size: 1.01em;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal__cancel-btn:hover, .cookie-modal__cancel-btn:focus { background: #FFD35E; color: #244364; }

@media (max-width: 420px) {
  .cookie-modal__panel { padding: 12px 2vw 10px 2vw; }
  .cookie-modal__footer { flex-direction: column; gap: 9px; }
}

/* UTILITIES */
.hide { display: none !important; }
.m-b-20 { margin-bottom: 20px !important; }

/* COLOR OVERRIDES FOR HIGH CONTRAST IN TESTIMONIALS */
.testimonials .testimonial-card {
  background: #FAFAFB;
  color: #143046;
  border-left: 5px solid #38A7C7;
}
.testimonials .testimonial-card .author { color: #38A7C7; }

/* Z-INDEX MANAGEMENT */
header { z-index: 1200; position: relative; }
footer { z-index: 1200; position: relative; }

/* SELECTION COLOR (for tech vibe) */
::selection { background: #38A7C7; color: #143046; }

/* NEON ACCENTS / FUTURISTIC SHADOWS */
.cta-btn,
.cookie-banner__btn--accept,
.cookie-banner__btn--settings {
  box-shadow: 0 0 16px 0 rgba(56,167,199,0.16), 0 2px 10px #14304611;
}

/* ANIMATIONS - MICRO INTERACTIONS */
.cta-btn, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.14s, box-shadow 0.17s, transform 0.14s;
  will-change: background, color, box-shadow, transform;
}

/* VISUAL HIERARCHY SPACING */
.section, .features, .hero, .call_to_action { margin-bottom: 60px; }
.card, .testimonial-card, .course-card, .content-grid > * { margin-bottom: 20px; }
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item { gap: 20px; }

/* END */
