/* 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, 
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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #033860;
  background: #F9F7F3;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #033860;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #58A4B0;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* TYPOGRAPHY - Vibrant, Bold */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  color: #033860;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  color: #58A4B0;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  color: #033860;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  color: #033860;
  margin-bottom: 6px;
}
.subheadline {
  font-size: 1.2rem;
  color: #58A4B0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 28px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #033860;
}
strong {
  font-weight: 700;
  color: #033860;
}

/* LAYOUT: Container & Section Spacing */
.container {
  margin: 0 auto;
  padding: 0 18px;
  max-width: 1180px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 4px 18px 0 rgba(88,164,176,.10);
}

/* HEADER & NAVIGATION */
header {
  background: #033860;
  padding: 0;
  box-shadow: 0 3px 15px 0 rgba(3,56,96,.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F9F7F3;
  font-size: 1rem;
  padding: 3px 4px;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #58A4B0;
  color: #033860;
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #58A4B0;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(88,164,176,0.14);
  transition: background 0.28s, transform 0.16s;
  margin-left: 8px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.primary-cta:hover, .primary-cta:focus {
  background: #033860;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #58A4B0;
  border: 2px solid #58A4B0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 28px;
  border-radius: 30px;
  box-shadow: 0 2px 8px 0 rgba(88,164,176,0.10);
  margin-top: 20px;
  letter-spacing: 0.01em;
  transition: background .23s, color .21s, border-color .19s, transform .12s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #58A4B0;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  border-color: #033860;
}

.mobile-menu-toggle {
  display: none;
  background: #58A4B0;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background .17s, color .17s, transform .17s;
  z-index: 460;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F9F7F3;
  color: #033860;
  outline: 0;
  transform: scale(1.11);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #033860;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.41,1.16,.72,1.01);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 5px 16px;
  margin: 20px 0 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: background .13s, color .13s, transform .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #58A4B0;
  color: #033860;
  outline: 0;
  transform: scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 0 32px;
}
.mobile-nav a {
  color: #F9F7F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .17s, border-color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #58A4B0;
  border-bottom: 2px solid #58A4B0;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .primary-cta {
    margin-left: 0;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 7px;
  }
  section, .section {
    padding: 28px 4px;
  }
  header img {
    height: 40px;
  }
}

/* HERO SECTION */
.hero {
  background: #58A4B0;
  background-image: linear-gradient(97deg, #58A4B0 60%, #4ed39d 100%);
  color: #fff;
  border-radius: 0 0 50px 50px;
  min-height: 320px;
  padding-bottom: 42px;
  margin-bottom: 0;
}
.hero .container, .hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.09);
  font-size: 2.5rem;
}
.hero .subheadline {
  color: #033860;
  background: rgba(255,255,255, .37);
  display: inline-block;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 1.1rem;
  margin-bottom: 26px;
  font-weight: 500;
}
.hero .primary-cta {
  background: #F9F7F3;
  color: #033860;
  font-size: 1.19rem;
  font-weight: 900;
  box-shadow: 0 5px 20px 0 rgba(88,164,176,.23);
  margin-top: 20px;
}
.hero .primary-cta:hover, 
.hero .primary-cta:focus {
  background: #033860;
  color: #fff;
}

/* FEATURE (Grid) SECTION - Use Flexbox */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #F9F7F3;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(88,164,176,.13);
  padding: 27px 22px 22px 22px;
  min-width: 230px;
  max-width: 300px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: transform .18s, box-shadow .18s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 40px 0 rgba(88,164,176,.19);
}
.feature-grid img {
  width: 36px; height: 36px;
  margin-bottom: 8px;
}

/* SERVICES LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.service-list li {
  background: #fff;
  border-left: 6px solid #58A4B0;
  border-radius: 16px;
  padding: 21px 28px 18px 20px;
  flex: 1 1 245px;
  min-width: 210px;
  box-shadow: 0 3px 16px 0 rgba(3,56,96,.09);
  margin-bottom: 20px;
  transition: box-shadow .21s, transform .14s, border-color .15s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 6px 36px 0 rgba(88,164,176,.18);
  border-color: #033860;
  transform: scale(1.03);
}
.service-list h3, .service-list h2 {
  margin-bottom: 10px;
  color: #033860;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
}
.service-list p {
  font-size: 1rem;
}

/* PRICING TABLE */
.service-pricing-table {
  width: 100%;
  margin: 28px 0 20px 0;
  border-spacing: 0;
  background: #F9F7F3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(88,164,176,.10);
}
.service-pricing-table th, .service-pricing-table td {
  text-align: left;
  padding: 13px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.service-pricing-table th {
  background: #58A4B0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.service-pricing-table td {
  color: #033860;
  font-size: 1rem;
}
.service-pricing-table tbody tr:nth-child(even) td {
  background: #f1f7fa;
}

/* FAQ */
.faq-snippet {
  margin: 28px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #eefbfa;
  border-left: 6px solid #4ed39d;
  border-radius: 12px;
  padding: 18px 21px 12px 21px;
}

/* TESTIMONIALS */
.testimonial-carousel, .testimonial-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.testimonial-carousel {
  margin-bottom: 18px;
}
.testimonial-card {
  background: #F9F7F3;
  color: #033860;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(3,56,96,.09);
  padding: 24px 30px 20px 30px;
  min-width: 220px;
  flex: 1 1 265px;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: box-shadow .19s, transform .13s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(88,164,176,.16);
  transform: scale(1.021);
}
.testimonial-card p {
  color: #033860;
  font-size: 1.09rem;
}
.testimonial-card span {
  color: #58A4B0;
  font-size: 0.97rem;
  margin-top: 14px;
  display: block;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}
.client-logos img {
  width: 52px; height: 52px;
  border-radius: 16px;
  border: 2px solid #58A4B0;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(3,56,96,0.06);
}

/* CARD & CASE STUDY PATTERN */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(88,164,176,0.10);
  padding: 28px 21px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(88,164,176,.16);
  transform: scale(1.014);
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.case-studies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.case-study {
  background: #eefbfa;
  border-left: 6px solid #58A4B0;
  padding: 13px 19px 13px 17px;
  border-radius: 14px;
  color: #033860;
  min-width: 220px;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* SPEAKER PROFILES */
.speaker-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.profile {
  background: #F9F7F3;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(3,56,96,0.11);
  padding: 21px 25px 19px 20px;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile:hover, .profile:focus-within {
  box-shadow: 0 7px 30px 0 rgba(88,164,176,.13);
  transform: scale(1.03);
}
.tags {
  font-size: 0.92rem;
  color: #4ed39d;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BLOG LISTS */
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 16px;
}
.featured-articles article {
  background: #F9F7F3;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(88,164,176,.10);
  padding: 20px 23px 15px 18px;
  flex: 1 1 250px;
  min-width: 200px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
}
.featured-articles article:hover, .featured-articles article:focus-within {
  box-shadow: 0 8px 30px 0 rgba(80,200,230,0.08);
  transform: translateY(-4px) scale(1.025);
}
.featured-articles h2 {
  font-size: 1.17rem;
  color: #033860;
  margin-bottom: 6px;
}
.featured-articles a {
  color: #58A4B0;
  font-weight: 700;
  font-size: 1.01rem;
  margin-top: 4px;
  transition: color .18s;
}
.featured-articles a:hover {
  color: #033860;
  text-decoration: underline;
}
.search-filter-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.search-filter-row input[type="search"] {
  padding: 10px 15px;
  border-radius: 20px;
  border: 2px solid #58A4B0;
  font-size: 1rem;
  margin-bottom: 7px;
  outline: none;
  transition: border-color .16s;
}
.search-filter-row input[type="search"]:focus {
  border-color: #033860;
}
.category-filters {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.category-filters a {
  background: #eefbfa;
  color: #58A4B0;
  padding: 5px 17px;
  border-radius: 99px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .16s, color .14s;
}
.category-filters a:hover, .category-filters a:focus {
  background: #58A4B0;
  color: #fff;
}
.top-posts-snippet {
  margin-top: 24px;
  background: #eefbfa;
  border-left: 6px solid #58A4B0;
  border-radius: 13px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #033860;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 15px 0;
  flex-wrap: wrap;
}
.newsletter-signup input[type="email"] {
  padding: 9px 18px;
  border-radius: 21px;
  border: 2px solid #58A4B0;
  font-size: 1rem;
  width: 240px;
  transition: border-color .17s;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #033860;
}
.newsletter-signup button {
  background: #58A4B0;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(88,164,176,0.11);
  transition: background .18s, color .18s, transform .12s;
}
.newsletter-signup button:hover,
.newsletter-signup button:focus {
  background: #033860;
  color: #fff;
  transform: scale(1.055);
}

/* GENERAL CARDS, INFO, MAPS, CONTACT */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-info {
  background: #eefbfa;
  padding: 16px 23px 13px 23px;
  border-radius: 14px;
  border-left: 6px solid #58A4B0;
  color: #033860;
  margin-bottom: 12px;
}
.contact-info ul {
  margin-top: 7px;
}
.map {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 16px 0 12px 0;
  padding: 13px 13px 10px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(88,164,176,0.08);
}
.map img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: #033860;
  color: #fff;
  padding: 38px 0 30px 0;
  margin-top: 42px;
  border-radius: 42px 42px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #58A4B0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 4px;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9F7F3;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.98rem;
  color: #F9F7F3;
}
.footer-info a {
  color: #F9F7F3;
  font-weight: 700;
  text-decoration: underline;
  transition: color .13s;
}
.footer-info a:hover, .footer-info a:focus {
  color: #4ed39d;
}

/* --- RESPONSIVE --- */
@media (max-width: 1080px) {
  .hero h1 { font-size: 2.1rem; }
  .feature-grid, .service-list, .testimonial-carousel, .card-container, .speaker-profiles, .content-grid, .case-studies, .featured-articles {gap: 18px;}
}
@media (max-width: 900px) {
  .feature-grid li, .service-list li, .profile, .featured-articles article, .card {
    flex: 1 1 90%;
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding: 0 3vw; }
  section, .section { padding: 25px 2px; margin-bottom: 36px; }
  .content-wrapper { gap: 17px; }
  .hero { min-height: 160px; padding-bottom: 21px; }
  .hero h1 { font-size: 1.38rem; }
  .testimonial-card, .profile, .feature-grid li, .service-list li, .case-study, .featured-articles article {
    padding: 18px 9px 13px 12px;
    font-size: 1rem;
    min-width: 120px;
    max-width: 99%;
  }
  .feature-grid, .service-list, .testimonial-carousel, .card-container, .speaker-profiles, .content-grid, .case-studies, .featured-articles {
    flex-direction: column;
    gap: 14px;
  }
  .newsletter-signup {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .category-filters { gap: 9px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.16rem; }
  h2 { font-size: 1.05rem; }
  .hero .primary-cta {
    padding: 10px 17px;
    font-size: 1rem;
  }
}

/* ----- COOKIE CONSENT BANNER & MODAL ----- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5011;
  background: #033860;
  color: #F9F7F3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 18px 32px 18px 24px;
  min-height: 80px;
  box-shadow: 0 -2px 19px 0 rgba(88,164,176,.13);
  border-radius: 28px 28px 0 0;
  font-size: 1rem;
  opacity: 1;
  animation: cookieSlideUp .95s cubic-bezier(.38,1.3,.69,1.01);
  transition: transform .3s, opacity .4s;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 40vw;
  color: #F9F7F3;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 9px 23px;
  cursor: pointer;
  margin: 0 3px;
  font-size: 1rem;
  transition: background .15s, color .15s, transform .16s;
}
.cookie-banner .accept-all {
  background: #4ed39d;
  color: #033860;
  box-shadow: 0 2px 8px 0 rgba(80,200,230,0.09);
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #58A4B0;
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .reject-all {
  background: #E5546D;
  color: #fff;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #BA3659;
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .cookie-settings {
  background: #033860;
  color: #58A4B0;
  border: 2px solid #58A4B0;
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #58A4B0;
  color: #fff;
  border-color: #033860;
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 10px 12px 8px;
    font-size: 0.97rem;
    min-height: 0;
  }
  .cookie-banner .cookie-banner__actions {
    gap: 11px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  z-index: 5020;
  background: rgba(3,56,96, 0.84);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .18s;
  animation: cookieModalFadeIn .45s cubic-bezier(.71,.09,.77,.47);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-card {
  background: #F9F7F3;
  color: #033860;
  border-radius: 22px;
  max-width: 95vw;
  width: 398px;
  box-shadow: 0 7px 44px 3px rgba(3,56,96,0.34);
  padding: 34px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: transparent;
  border: none;
  color: #58A4B0;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color .14s, transform .14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #033860;
  transform: scale(1.13);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  background: #f1f7fa;
  border-radius: 12px;
  padding: 13px 15px 13px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category .essential-label {
  font-weight: 600;
  color: #4ed39d;
  margin-left: 4px;
}
.cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-switch {
  appearance: none;
  -webkit-appearance: none;
  width: 38px; height: 20px;
  background: #ddeff5;
  border-radius: 11px;
  outline: none;
  transition: background .2s;
  position: relative;
  margin-right: 5px;
}
.cookie-switch:checked {
  background: #58A4B0;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
  box-shadow: 0 0 3px 1px rgba(3,56,96,0.04);
}
.cookie-switch:checked:before {
  left: 20px;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-buttons button {
  padding: 9px 24px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  background: #58A4B0;
  color: #fff;
  transition: background .15s, color .15s, transform .16s;
}
.cookie-modal .cookie-buttons .cancel {
  background: #E5546D;
  color: #fff;
}
.cookie-modal .cookie-buttons .cancel:hover {
  background: #BA3659;
}
.cookie-modal .cookie-buttons button:hover,
.cookie-modal .cookie-buttons button:focus {
  background: #033860;
  color: #fff;
  transform: scale(1.04);
}
@media (max-width: 580px) {
  .cookie-modal .modal-card {
    width: 94vw; min-width: auto; padding: 21px 6px 20px 8px;
  }
  .cookie-category { padding: 9px 4px 9px 3px; }
}

/* ACCESSIBILITY: Focus ring for keyboard navigation */
a:focus, button:focus, input:focus, .primary-cta:focus, .secondary-cta:focus {
  outline: 2px solid #4ed39d;
  outline-offset: 2px;
  z-index: 10002;
}

/* MICRO INTERACTIONS */
button, .primary-cta, .secondary-cta, .footer-nav a, .main-nav a, .cookie-banner button {
  transition: background 0.19s, color 0.18s, box-shadow .17s, transform .12s;
}

/* Z-INDEX LAYERS (no overlap) */
header { z-index: 400; position: relative; }
.mobile-menu { z-index: 1000; }
.cookie-banner { z-index: 5011; }
.cookie-modal { z-index: 5020; }

/* UTILITY */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.text-center { text-align: center!important; }

@media (max-width:400px) {
  .primary-cta, .secondary-cta, .newsletter-signup button { width: 100%; text-align: center; padding: 10px 0; }
}
