/* ==================== CSS RESET & ROOT ==================== */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #21205D;
  font-family: 'Open Sans', Arial, sans-serif;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; outline: none; }

/* ==================== VARIABLES (FALLBACKS) ==================== */
:root {
  --primary: #21205D;
  --secondary: #F6D860;
  --accent: #E43A47;
  --bg: #fff;
  --border: #efefef;
  --neutral-100: #fff9ea;
  --neutral-200: #F7F6FD;
  --shadow: 0 4px 16px 0 rgba(33,32,93,0.07), 0 2px 4px 0 rgba(228,58,71,0.04);
}

/* ==================== PLAYFUL DYNAMIC COLORS ==================== */
body {
  background: var(--neutral-200);
  color: var(--primary);
}

/* ==================== FONT FACE ==================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, .cta-btn, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--accent);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}
@media (min-width: 650px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
p, li, span, address, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
  color: var(--accent);
}
.subheadline {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 22px;
}
.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline dotted;
  transition: color .2s;
}
.text-link:hover { color: var(--primary); }

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section, main > section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: 0;
  border-radius: 36px;
}
@media (max-width: 768px) {
  .section, main > section, section { padding: 30px 6px; }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container, .feature-grid, .values-list, .team-list, .service-list, .service-categories, .benefit-list, .post-summaries, .event-schedule, .highlighted-articles, .quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > li,
.values-list > li,
.team-list > li,
.service-list > li,
.service-categories > li,
.benefit-list > li,
.post-summaries > li,
.event-schedule > li,
.highlighted-articles > ul > li,
.quick-facts > li {
  margin-bottom: 20px;
  background: var(--neutral-100);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
  flex: 1 1 250px;
  position: relative;
  transition: box-shadow .15s, transform .18s;
  min-width: 220px;
}
.feature-grid > li:hover, .values-list > li:hover, .benefit-list > li:hover, .team-list > li:hover, .service-list > li:hover, .post-summaries > li:hover {
  box-shadow: 0 8px 32px 0 rgba(228,58,71,0.12), 0 1.5px 6px 0 rgba(246,216,96,0.09);
  transform: translateY(-6px) scale(1.02);
  z-index: 3;
}
@media (max-width: 700px) {
  .card-container, .feature-grid, .values-list, .team-list, .service-list, .service-categories, .benefit-list, .post-summaries, .event-schedule {
    flex-direction: column;
    gap: 18px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  min-width: 0;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-width: 250px;
  max-width: 500px;
  border: 2px solid var(--secondary);
}
.testimonial-card p {
  color: #21205D;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-author {
  display: block;
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 12px;
}
.testimonials .testimonial-slider, .testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials .testimonial-slider, .testimonials .testimonial-list {
    flex-direction: column;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(33, 32, 93, 0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}
.logo-link img {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.nav-list li a {
  padding: 7px 12px;
  border-radius: 22px;
  transition: background .18s, color .18s;
  color: var(--primary);
  position: relative;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.nav-list li a:hover, .nav-list li a:focus {
  background: var(--accent);
  color: #fff;
}
.cta-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 26px;
  box-shadow: 0 4px 16px 0 rgba(228,58,71,0.11);
  font-size: 1.066rem;
  transition: background .18s, box-shadow .16s, transform .17s;
  border: 0;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  margin-left: 18px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 22px 0 rgba(33,32,93,0.11);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 8px;
  }
  .nav-list {
    gap: 17px;
    font-size: 0.98rem;
  }
}
@media (max-width: 850px) {
  .main-nav .nav-list,
  .main-nav .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 2.1rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2.5px 11px 0 rgba(228,58,71,0.09);
    z-index: 90;
    cursor: pointer;
    transition: background .15s, transform .16s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.08) rotate(-3deg);
  }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--secondary);
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.5,1.6,.4,1), opacity .32s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  margin: 18px 16px 0 0;
  width: 42px;
  height: 42px;
  z-index: 1011;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-nav {
  margin: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  background: #fff;
  border-radius: 36px;
  padding: 17px 44px;
  margin: 0 0 6px 0;
  box-shadow: 0 1.5px 8px 0 rgba(33,32,93,0.09);
  transition: background .2s, color .16s, transform .14s;
  text-align: center;
  width: 80vw;
  max-width: 350px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--accent);
  transform: translateX(7px) scale(1.04);
}

/* ==================== HERO & CTA BANNER ==================== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 60%, var(--accent) 100%);
  border-radius: 0 0 48px 48px;
  padding: 56px 20px 44px 20px;
  text-align: left;
  box-shadow: 0 7px 40px 0 rgba(228,58,71,0.12);
}
.hero h1 { color: var(--primary); }
.hero .subheadline {
  font-size: 1.24rem;
  margin-bottom: 28px;
  color: var(--primary);
  line-height: 1.41;
}
.hero .cta-btn {
  margin-top: 14px;
  font-size: 1.2rem;
  padding: 14px 40px;
  box-shadow: 0 6px 24px 0 rgba(33,32,93,0.10);
  border-radius: 36px;
}
@media (max-width: 650px) {
  .hero {
    padding: 34px 6px 32px 6px;
    text-align: left;
    border-radius: 0 0 32px 32px;
  }
}
.cta-banner {
  background: var(--secondary);
  text-align: center;
  border-radius: 38px;
  margin-bottom: 38px;
  box-shadow: 0 2px 14px 0 rgba(246,216,96,0.11) inset, 0 4px 12px 0 rgba(228,58,71,0.06);
}
.cta-banner .cta-btn {
  margin-top: 18px;
  padding: 12px 36px;
  font-size: 1.09rem;
  font-weight: 900;
}

/* ==================== CARDS & ICONS ==================== */
.feature-grid img,
.values-list img,
.service-list img,
.benefit-list img,
.team-list img,
.contact-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .feature-grid img, .values-list img, .service-list img, .benefit-list img, .team-list img, .contact-list img {
    width: 30px; height: 30px;
  }
}

/* ==================== QUICK FACTS LISTS ETC ==================== */
.quick-facts > li, .contact-list > li, .highlighted-articles > ul > li {
  padding: 13px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1.5px 7px 0 rgba(33,32,93,0.06);
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ==================== BLOG CATEGORY TAG ==================== */
.category-tag {
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.9em;
  font-weight: 700;
  padding: 2.5px 16px;
  border-radius: 12px;
  margin-right: 12px;
  display: inline-block;
}

/* ==================== BLOCKQUOTE / QUOTES ==================== */
blockquote {
  background: #fff;
  border-left: 6px solid var(--accent);
  padding: 18px 19px 18px 24px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
  border-radius: 18px;
}
blockquote span {
  margin-top: 6px;
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  font-weight: bold;
}

/* ==================== FORMS ==================== */
input[type='text'], input[type='email'], textarea {
  border: 2px solid var(--accent);
  background: #fff;
  color: var(--primary);
  padding: 13px;
  border-radius: 18px;
  margin-bottom: 17px;
  width: 100%;
  font-size: 1rem;
  box-shadow: none;
  font-family: 'Open Sans', Arial, sans-serif;
  resize: vertical;
  transition: border .18s, box-shadow .18s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border: 2.5px solid var(--primary);
  box-shadow: 0 2px 5px 0 rgba(33,32,93,0.06);
}
textarea {
  min-height: 90px;
  max-height: 400px;
}
form label {
  font-weight: 700;
  color: var(--accent);
}
form button[type='submit'] {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 22px;
  font-size: 1rem;
  margin-top: 11px;
  transition: background .15s, transform .16s;
  box-shadow: 0 3.5px 16px 0 rgba(228,58,71,0.07);
  cursor: pointer;
}
form button[type='submit']:hover, form button[type='submit']:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.04);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -2px 15px 0 rgba(33,32,93,0.10);
  margin-top: 54px;
  padding-top: 20px;
}
footer section {
  padding: 35px 0 30px 0;
  margin-bottom: 0;
  background: 0;
  border-radius: 36px 36px 0 0;
}
.footer-nav ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 6px 18px;
  transition: color .15s, background .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.footer-contact {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-contact img {
  width: 45px;
  height: 45px;
  margin-right: 14px;
}
address {
  font-style: normal;
  color: #fff;
}
.newsletter-box {
  background: var(--neutral-100);
  border-radius: 24px;
  padding: 22px 32px 16px 32px;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
  box-shadow: 0 1.5px 9px 0 rgba(238,221,100,0.08);
}
.newsletter-box h3 {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
}
.newsletter-box p {
  color: var(--primary);
}
.newsletter-box form {
  display: flex;
  gap: 7px;
}
.newsletter-box input[type='email'] {
  flex: 1 1 auto;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 16px;
  font-size: 1rem;
  padding: 8px 14px;
}
.newsletter-box button[type='submit'] {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 16px;
  font-size: 1rem;
  transition: background .13s;
}
.newsletter-box button[type='submit']:hover {
  background: var(--primary);
  color: var(--secondary);
}
@media (max-width: 768px) {
  .footer-nav ul {
    gap: 13px;
    font-size: 0.94rem;
  }
  .newsletter-box {
    padding: 16px 10px 9px 10px;
  }
}
@media (max-width: 650px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
}

/* =============== ACCORDION (FAQ) =============== */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(33,32,93,0.08);
  padding: 18px 24px 8px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow .15s, background .16s;
}
.faq-accordion > div:hover {
  box-shadow: 0 5px 14px 0 rgba(228,58,71,0.09);
  background: var(--neutral-100);
}
.faq-accordion h3 { color: var(--accent); }
.faq-accordion p { margin-bottom: 7px; }

/* =============== THANK YOU PANEL =============== */
.thank-you {
  background: var(--secondary);
  border-radius: 36px;
  box-shadow: 0 2px 12px 0 rgba(246,216,96,0.14);
  margin-top: 44px;
  text-align: center;
}
.thank-you .confirmation-message {
  margin: 16px auto 26px auto;
  max-width: 650px;
  color: var(--primary);
}
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto 19px auto;
  color: var(--primary);
}

/* =============== LEGAL TEXT ================== */
.legal-text {
  background: #fff;
  border-radius: 27px;
  box-shadow: 0 2px 13px 0 rgba(33,32,93,0.08);
  padding: 28px 20px 18px 20px;
  margin-bottom: 48px;
}
.legal-text h1, .legal-text h2, .legal-text h3 {
  color: var(--accent);
}
.legal-text ul {
  margin-bottom: 20px;
}
.legal-text ul li {
  margin-left: 20px;
  list-style-type: disc;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 3px 0 3px 4px;
}

/* =============== EVENT LIST ================== */
.event-schedule > li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 7px 0 rgba(246,216,96,0.07);
  padding: 16px 18px;
  margin-bottom: 13px;
  border-left: 6px solid var(--accent);
  color: var(--primary);
}

/* =============== ANIMATIONS & INTERACTIONS =============== */
.cta-btn, .nav-list li a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.15s, transform 0.13s;
}
.card-container > *, .feature-grid > *, .values-list > *, .team-list > *, .service-list > *, .service-categories > *, .benefit-list > *, .post-summaries > *, .testimonial-card, .faq-accordion > div, .cta-banner, .newsletter-box {
  transition: box-shadow 0.16s, transform 0.15s;
}
.cta-btn:active, .nav-list li a:active, .mobile-nav a:active {
  transform: scale(0.98);
}
.card-container > *:hover, .feature-grid > *:hover {
  transform: scale(1.03) rotate(-1.5deg);
}

/* Micro bounce on CTA and images */
.cta-btn:active, .footer-nav a:active, .newsletter-box button[type='submit']:active {
  animation: wobble-btn 0.26s cubic-bezier(0.7, 0, 0.84, 0.21);
}
@keyframes wobble-btn {
  0% { transform: scale(1) rotate(0); }
  32% { transform: scale(0.92) rotate(-7deg); }
  68% { transform: scale(1.07) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Swing-in pop animation for testimonial cards */
.testimonial-card {
  opacity: 0;
  transform: scale(0.95) translateY(24px);
  animation: testimonial-in 0.7s cubic-bezier(.36,.67,.62,1.39) 0.08s 1 forwards;
}
@keyframes testimonial-in {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==================== RESPONSIVE - MOBILE FIRST ==================== */
@media (max-width: 650px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.09rem; }
  .hero h1 { font-size: 1.35rem; }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary);
  color: var(--primary);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -4px 36px 0 rgba(228,58,71,0.09);
  padding: 22px 11px 26px 11px;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  animation: cookie-pop-in .6s cubic-bezier(.61,.04,.47,.99);
}
@keyframes cookie-pop-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner button {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 7px 19px;
  cursor: pointer;
  margin-right: 4px;
  transition: background .13s, color .12s, transform .13s;
  box-shadow: 0 1.5px 6px 0 rgba(228,58,71,0.07);
}
.cookie-banner button.cookie-settings {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.07);
}
.cookie-banner button:active { animation: wobble-btn 0.2s cubic-bezier(0.7, 0, 0.84, 0.21); }

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4000;
  min-width: 295px;
  max-width: 97vw;
  width: 420px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 44px 0 rgba(33,32,93,0.22);
  border-radius: 27px;
  padding: 28px 24px 19px 24px;
  transform: translate(-50%, -60%);
  animation: cookie-modal-bounce .34s cubic-bezier(.61,.04,.47,.99);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookie-modal-bounce {
  from { opacity: 0; transform: scale(0.82) translate(-50%, -92%); }
  to { opacity: 1; transform: scale(1) translate(-50%, -60%); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 10px 0 7px 0;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  margin-right: 3px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal .cookie-essential {
  color: var(--primary);
  font-weight: 700;
  border-left: 6px solid var(--secondary);
  padding-left: 10px;
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.45rem;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal__close:hover { background: var(--primary); color: var(--secondary); }

@media (max-width: 630px) {
  .cookie-modal {
    width: 97vw;
    padding: 18px 7px 13px 7px;
  }
}

/* Hide cookie stuff by default (JS toggles .show) */
.cookie-banner, .cookie-modal { display: none; }
.cookie-banner.show, .cookie-modal.show { display: flex; }

/* =============== UTILITY CLASSES =============== */
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-8 { gap: 8px !important; }
.gap-24 { gap: 24px !important; }
.rounded-xxl { border-radius: 44px !important; }

/* ===================== END ===================== */