/* --- 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,
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, 
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  min-height: 100vh;
  background: #111620;
  color: #d0e6f9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  background-color: #101722;
  background-image: linear-gradient(120deg, #184D7A 0%, #25384d 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #4EC9A1;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDF6EE;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #FDF6EE;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.36rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.11rem;
}
p, li {
  font-size: 1rem;
  color: #d0e6f9;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
strong, b {
  color: #4EC9A1;
  font-weight: 700;
}
.text-section ul, .usp-bullets, .confirmation-details ul, .review-highlights ul, .gdpr-summary-section ul, .terms-text-section ul {
  margin-bottom: 16px;
}
.text-section ul li, .usp-bullets li, .confirmation-details ul li, .review-highlights ul li, .gdpr-summary-section ul li, .terms-text-section ul li {
  padding-left: 18px;
  position: relative;
}
.text-section ul li:before, .usp-bullets li:before, .confirmation-details ul li:before, .review-highlights ul li:before, .gdpr-summary-section ul li:before, .terms-text-section ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 7px;
  background: linear-gradient(90deg, #4EC9A1 50%, #184D7A 100%);
}

/* --- BRAND COLORS & ACCENTS (custom props + fallbacks) --- */
:root {
  --primary: #184D7A;
  --secondary: #4EC9A1;
  --accent: #FDF6EE;
  --bg-dark: #101722;
  --bg-panel: #14213d;
  --text-main: #d0e6f9;
  --text-light: #FDF6EE;
  --neon: #00fff0;
  --danger: #e14c64;
  --shadow-card: 0 4px 18px 0 rgba(30,40,61,0.23);
  --border-radius: 18px;
}

/* --- CONTAINER & SPACING --- */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #101722;
  border-bottom: 2px solid #18324A;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: row;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
}
.logo img {
  height: 44px;
  width: auto;
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.desktop-nav a {
  color: #d0e6f9;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 5px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #1e2639;
  color: #4EC9A1;
}
.desktop-nav .cta-primary {
  background: #4EC9A1;
  color: #184D7A;
  font-weight: 700;
  box-shadow: 0 1px 5px rgba(78,201,161,0.08);
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.desktop-nav .cta-primary:hover, .desktop-nav .cta-primary:focus {
  background: #FDF6EE;
  color: #184D7A;
}
.mobile-menu-toggle {
  display: none;
  padding: 12px;
  background: #184D7A;
  color: #FDF6EE;
  border-radius: 8px;
  font-size: 2.2rem;
  z-index: 30;
  transition: background 0.23s, color 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #4EC9A1;
  color: #184D7A;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,23,34,0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.52, 0.12, 0.2, 1.07);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #FDF6EE;
  font-size: 2.2rem;
  margin: 18px 0 0 18px;
  align-self: flex-start;
  border-radius: 10px;
  transition: background 0.23s, color 0.23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #4EC9A1;
  color: #101722;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 0 0 0;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #FDF6EE;
  font-size: 1.18rem;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #184D7A;
  color: #4EC9A1;
}

/* --- MAIN CTA BUTTONS --- */
.cta-primary {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 14px;
  background: #4EC9A1;
  color: #11436A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.095rem;
  box-shadow: 0 3px 18px 0 rgba(78,201,161,0.21);
  border: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.06);
  letter-spacing: 0.01em;
  transition: background 0.19s, color 0.19s, transform 0.15s;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2BA89D;
  color: #FDF6EE;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(0,255,240,0.21);
}
.cta-secondary {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 9px;
  background: #18324A;
  color: #4EC9A1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 1.5px solid #4EC9A1;
  margin-top: 12px;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #4EC9A1;
  color: #184D7A;
  border-color: #18324A;
}

/* --- CARDS, GRIDS, FEATURES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #14213d;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.22s, border 0.21s;
  position: relative;
  min-width: 240px;
  flex: 1 1 250px;
  border: 2px solid transparent;
}
.card:hover, .feature-card:hover, .course-card:hover, .workshop-card:hover, .format-card:hover, .bio-card:hover {
  box-shadow: 0 8px 28px 0 rgba(0,255,240,0.09), var(--shadow-card);
  transform: translateY(-5px) scale(1.008);
  border-color: #4EC9A1;
}
.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;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  background: #14213d;
  border-radius: var(--border-radius);
  padding: 26px 20px 20px 20px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #22355B;
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
  position: relative;
}
.feature-card img {
  width: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px #00fff0);
}

.course-overview-list, .course-catalog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.course-item, .course-card {
  flex: 1 1 270px;
  background: #1a2639;
  border-radius: 13px;
  padding: 22px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid #4EC9A1;
  transition: box-shadow 0.21s, border 0.2s;
}
.course-card h3, .course-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FDF6EE;
}
.course-level-tag {
  background: #4EC9A1;
  color: #184D7A;
  border-radius: 7px;
  font-size: 0.92rem;
  padding: 2px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 8px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FDF6EE;
  color: #184D7A;
  border-radius: 17px;
  box-shadow: 0 4px 20px 0 rgba(24,77,122,0.07);
  padding: 26px 24px 18px 24px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid #4EC9A1;
  position: relative;
  transition: box-shadow 0.2s, border 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(24,77,122,0.11);
  border-color: #184D7A;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #184D7A;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.star-rating {
  font-size: 1.25rem;
  color: #ffd900;
  text-shadow: 0 1px 2px #184D7A;
  margin-left: 7px;
}
.review-highlights {
  background: #14213d;
  border-radius: 8px;
  padding: 18px 20px 16px;
  color: #d0e6f9;
  margin-top: 16px;
  margin-bottom: 20px;
}
.rating-summary {
  margin-top: 14px;
  padding: 12px 0 0 0;
  color: #FDF6EE;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.015em;
}

/* --- TEAM BIOS --- */
.team-bio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.bio-card {
  background: #14213d;
  border-radius: var(--border-radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.2px solid #25384d;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, border 0.16s;
}
.bio-card img {
  border-radius: 50%;
  width: 50px;
  margin-bottom: 6px;
  border: 3px solid #4EC9A1;
  background: #fff;
}
.bio-card h3 {
  margin-bottom: 4px;
}

/* --- METHODOLOGY --- */
.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.method-grid > div {
  background: #1a2639;
  border-radius: 13px;
  padding: 20px;
  min-width: 200px;
  flex: 1 1 220px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  border-left: 4px solid #4EC9A1;
  transition: box-shadow 0.18s, border 0.2s;
}
.method-grid img {
  width: 38px;
  margin-bottom: 8px;
  filter: brightness(1.1) drop-shadow(0 0 10px #00fff0);
}

/* --- WORKSHOPS --- */
.workshop-calendar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.workshop-card {
  background: #1a2639;
  border-radius: 13px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  flex: 1 1 300px;
  margin-bottom: 20px;
  border-left: 4px solid #4EC9A1;
  transition: box-shadow 0.18s, border 0.2s;
}
.workshop-card strong {
  color: #4EC9A1;
}
.workshop-format-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.format-card {
  background: #1a2639;
  border-radius: 13px;
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  min-width: 200px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.2px solid #18324A;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.19s;
}
.format-card img {
  width: 40px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px #4EC9A1);
}

/* --- BLOG --- */
.featured-blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #14213d;
  border-radius: 13px;
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1.5px solid #18324A;
  transition: box-shadow 0.18s, border 0.18s;
}
.blog-category-tag {
  margin-top: 8px;
  background: #184D7A;
  color: #4EC9A1;
  font-size: 0.91rem;
  border-radius: 7px;
  padding: 2px 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.outcomes-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}
.outcomes-icons img {
  width: 38px;
  filter: drop-shadow(0 0 8px #00fff0);
}

/* --- CONTACT --- */
.contact-info-summary,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.contact-info-summary > div,
.contact-info > p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FDF6EE;
  margin-bottom: 0;
}
.contact-info img {
  width: 20px;
}
.location-map-brief {
  background: #18324A;
  border-radius: 10px;
  padding: 18px 15px;
  color: #4EC9A1;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 220px;
  flex: 1 1 240px;
}

/* --- LEGAL SECTIONS --- */
.policy-text-section, .gdpr-summary-section, .cookies-information-sections, .terms-text-section {
  background: #14213d;
  border-radius: 12px;
  padding: 28px 23px 22px;
  color: #d0e6f9;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  margin-top: 10px;
}
.policy-text-section h2,
.cookies-information-sections h2, .gdpr-summary-section h2,.terms-text-section h2 {
  color: #4EC9A1;
  font-size: 1.14rem;
  margin-top: 18px;
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: #101722;
  border-top: 2px solid #18324A;
  padding: 38px 0 16px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 17px;
  flex-direction: column;
}
.footer-nav a {
  color: #4EC9A1;
  padding: 5px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FDF6EE;
}
.footer-contact {
  color: #d0e6f9;
  font-size: 0.99rem;
}
.footer-contact strong {
  color: #4EC9A1;
}

/* --- SPACING AND ALIGNMENT PATTERNS --- */
.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;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .feature-card, .course-card, .workshop-card, .bio-card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
}
.card:hover, .feature-card:hover, .course-card:hover, .workshop-card:hover, .bio-card:hover, .format-card:hover {
  outline: none;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px 0 rgba(30,255,240,0.10), var(--shadow-card);
  border-color: #00fff0;
}
.cta-primary:active { transform: translateY(1px) scale(.97); }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1150px) {
  .container {
    max-width: 960px;
  }
  .content-wrapper, .feature-grid, .testimonial-grid, .course-overview-list, .course-catalog-grid, .workshop-calendar-list, .workshop-format-cards, .team-bio-cards, .featured-blog-posts, .method-grid {
    gap: 18px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .desktop-nav {
    gap: 18px;
    font-size: 0.96rem;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .testimonial-grid, .course-overview-list, .course-catalog-grid, .workshop-calendar-list, .workshop-format-cards, .team-bio-cards, .featured-blog-posts, .method-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 17px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .testimonial-slider, .testimonial-grid, .course-overview-list, .course-catalog-grid, .workshop-calendar-list, .workshop-format-cards, .team-bio-cards, .featured-blog-posts, .method-grid, .container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .contact-info-summary, .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .testimonial-card {
    padding: 16px 12px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.54rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 0.99rem;
  }
  .card, .feature-card, .course-item, .course-card, .workshop-card, .bio-card, .format-card {
    padding: 13px 8px;
    min-width: 0;
  }
  .logo img {
    height: 32px;
  }
  .policy-text-section, .gdpr-summary-section, .cookies-information-sections, .terms-text-section {
    padding: 11px 4px 10px;
    font-size: 0.97rem;
  }
  .cta-primary, .cta-secondary {
    padding: 9px 12px;
    font-size: 0.96rem;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    padding: 0 7px;
    gap: 15px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #14213d;
  color: #FDF6EE;
  width: 100vw;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 16px 0 rgba(24,77,122,0.17);
  padding: 20px 14px 18px 14px;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.4s cubic-bezier(0.3,0.7,0.4,1);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner .cookie-text {
  color: #FDF6EE;
  font-size: 1rem;
  margin-right: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  background: #184D7A;
  color: #FDF6EE;
  border-radius: 9px;
  padding: 7px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  margin: 0 2px;
  transition: background 0.19s, color 0.18s, transform 0.1s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #4EC9A1;
  color: #184D7A;
}
.cookie-btn-reject {
  background: #e14c64;
  color: #fdf6ee;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #a93b50;
  color: #fff;
}
.cookie-btn-settings {
  background: #101722;
  border: 1px solid #4EC9A1;
  color: #4EC9A1;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #14213d;
  color: #fff;
  border-color: #00fff0;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,23,34,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3200;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #14213d;
  color: #FDF6EE;
  border-radius: 22px;
  padding: 32px 28px 22px 28px;
  min-width: 280px;
  max-width: 90vw;
  box-shadow: 0 8px 40px 0 rgba(24,77,122,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content h3 {
  color: #4EC9A1;
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #d0e6f9;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #25384d;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: #4EC9A1;
}
.cookie-toggle .cookie-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FDF6EE;
  transition: left 0.22s;
}
.cookie-toggle[aria-checked="true"] .cookie-thumb {
  left: 20px;
  background: #4EC9A1;
}
.cookie-modal-content .cookie-btn {
  margin-top: 12px;
}
.cookie-modal-close {
  background: none;
  color: #e14c64;
  font-size: 1.39rem;
  position: absolute;
  top: 16px;
  right: 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #a93b50;
  color: #fff;
}

/* --- SCROLLBAR --- */
body, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #4EC9A1 #101722;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-thumb {
  background: #4EC9A1;
  border-radius: 16px;
}
body::-webkit-scrollbar-track {
  background: #18324A;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.pt-8 { padding-top: 8px !important; }
.pb-8 { padding-bottom: 8px !important; }

/**************** END OF ORAL NOVA SKILLS "TECH_FUTURISTIC" FLEXBOX CSS ****************/