/* ===============================================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F5F6FB;
  color: #26304B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, picture, 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: 100%;
  border: none;
  background: none;
  outline: none;
}
:focus {
  outline: 2px solid #94B6E9; /* gentle blue pastel for accessibility */
  outline-offset: 2px;
}

/* ===============================================
   PASTEL BRAND COLOR PALETTE (SOFT PASTEL DESIGN)
   =============================================== */
:root {
  --primary: #1A2235;
  --primary-pastel: #626A85;
  --secondary: #F7A900;
  --accent: #F5F5F5;
  --white: #FFF;
  --black: #26304B;

  --blue-pastel: #94B6E9;
  --pink-pastel: #F8D6E2;
  --purple-pastel: #ddd5f3;
  --yellow-pastel: #FFF1C1;
  --mint-pastel: #B8F4E2;
  --green-pastel: #D2F6D8;
  --border: #E6E9F2;
  --shadow: 0 2px 8px 0 rgba(26,34,53,0.07);
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--accent);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
  color: var(--primary);
}
p, li, span, a, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.2rem;
  color: var(--primary-pastel);
  margin-bottom: 24px;
  max-width: 600px;
}
.cta-text {
  font-size: 1.125rem;
  font-weight: 500;
}

/* ===============================================
   CONTAINER & LAYOUT
   =============================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--accent);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(26,34,53,.11);
  transform: translateY(-5px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* For testimonial cards with avatar and text */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  border: 1px solid var(--border);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-user {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: var(--primary-pastel);
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============= HERO SECTION ============= */
.hero {
  width: 100%;
  padding: 64px 0 40px 0;
  background: linear-gradient(135deg, #F8D6E2 0%, #F5F6FB 100%);
  box-shadow: 0 4px 40px 0 rgba(168,177,205,0.14);
  border-radius: 0 0 42px 42px;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ============= FEATURES SECTION ============= */
.features {
  background: var(--mint-pastel);
  box-shadow: 0 2px 12px 0 rgba(94, 169, 170, 0.043);
  border-radius: 28px;
  margin-bottom: 60px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid li {
  background: var(--white);
  border-radius: 14px;
  min-width: 240px;
  max-width: 310px;
  box-shadow: var(--shadow);
  padding: 22px 18px 26px 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 1px solid var(--border);
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 18px 0 rgba(26,34,53,.11);
  transform: translateY(-3px) scale(1.012);
}
.feature-grid img {
  width: 34px;
  height: 34px;
}

/* ============= SERVICES SECTION ============= */
.services {
  background: var(--yellow-pastel);
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(243, 210, 111, 0.06);
  margin-bottom: 50px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.session-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 0 0;
}

/* ============= ABOUT / LEGAL / TEXT SECTIONS ============= */
.about, .legal, .contact-info {
  background: var(--purple-pastel);
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(137, 144, 211, 0.055);
  margin-bottom: 58px;
}
.text-section {
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* For FAQ or info box areas */
.faq-snippets {
  background: var(--blue-pastel);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 18px 0 0 0;
  color: var(--black);
}
.faq-snippets h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ============= CTA SECTION ============= */
.cta {
  background: var(--pink-pastel);
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(239, 97, 153, 0.07);
  margin-bottom: 55px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ============= FOOTER ============= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 24px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 48px;
  font-size: 1rem;
}
footer .container {
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.footer-links a, .footer-social a {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.21s, color 0.18s;
  font-weight: 400;
  font-size: 0.97rem;
}
.footer-links a:hover, .footer-social a:hover {
  color: var(--secondary);
  opacity: 1;
}
.footer-tagline {
  display: block;
  margin-top: 20px;
  color: #dde2f1;
  font-size: 1.01rem;
  font-style: italic;
}
footer span, footer p {
  color: #fff;
}

/* ===============================================
   MAIN NAVIGATION & MOBILE MENU
   =============================================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 20px 0 rgba(26,34,53,0.06);
  position: relative;
  z-index: 1200;
  border-radius: 0 0 38px 38px;
  min-height: 76px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 20px 18px 20px;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 12px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover {
  background: var(--blue-pastel);
  color: var(--primary);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(98deg, #F7A900 60%, #F8D6E2 100%);
  color: var(--primary);
  font-size: 1.09rem;
  font-family: 'Montserrat', sans-serif;
  padding: 9px 26px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(189,181,111,0.04);
  margin-left: 6px;
  transition: background 0.19s, color 0.21s, box-shadow 0.23s;
  border: 2px solid transparent;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(98deg, #FFDA84 60%, #F8D6E2 100%);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 6px 24px 0 rgba(214,180,60,0.09);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  margin-top: 8px;
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1301;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(26,34,53,0.07);
  transition: background 0.21s, color 0.15s;
}
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  display: none;
}
@media (max-width: 992px) {
  .main-nav {
    gap: 10px;
    padding: 16px 10px 16px 14px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 90vw;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(110deg, #F8D6E2 12%, #B8F4E2 81%);
    box-shadow: 0 2px 24px rgba(26,34,53,0.15);
    z-index: 1400;
    padding: 44px 28px 20px 22px;
    transition: transform 0.35s cubic-bezier(.4,.6,.4,1), right 0s 0.35s;
    transform: translateX(100vw);
    overflow-y: auto;
  }
  .mobile-menu.open {
    right: 0;
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(.6,1,.55,1.03), right 0s;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2.35rem;
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 1402;
    font-weight: 300;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: var(--secondary);
  }
  .mobile-nav {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-nav a {
    color: var(--primary);
    background: transparent;
    border-radius: 11px;
    padding: 13px 8px;
    font-size: 1.08rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav a:hover {
    background: var(--purple-pastel);
    color: var(--secondary);
  }
}

@media (max-width: 820px) {
  .footer-logo {
    margin-bottom: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
}

/* ========== RESPONSIVE STACKING, FLEX DIRECTION ========== */
@media (max-width: 1160px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 992px) {
  .content-grid,
  .testimonial-slider,
  .card-container,
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .section, .about, .legal, .services, .features, .cta {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    margin-bottom: 35px;
    padding: 30px 7px;
  }
  .features {
    border-radius: 18px;
    margin-bottom: 30px;
    padding-top: 20px;
  }
  .about, .legal, .services, .cta {
    border-radius: 18px;
    margin-bottom: 28px;
  }
  .content-grid,
  .card-container,
  .testimonial-slider,
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-links,
  .footer-social {
    gap: 14px;
    margin-top: 7px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 38px 0 25px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .main-nav a {
    font-size: 0.96rem;
    padding: 6px 8px;
  }
  footer {
    font-size: 0.99rem;
    padding: 22px 0 8px 0;
    border-radius: 20px 20px 0 0;
  }
}

/* ============= BUTTONS & LINKS ============= */
button, .btn-primary, .btn {
  cursor: pointer;
  user-select: none;
  outline: none;
  text-align: center;
}
.btn {
  background: var(--blue-pastel);
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 7px 21px;
  border-radius: 14px;
  font-weight: 500;
  margin-right: 7px;
  transition: background 0.15s, color 0.17s, box-shadow 0.18s;
}
.btn:hover, .btn:focus {
  background: var(--purple-pastel);
  color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(137, 144, 211, 0.16);
}

a {
  transition: color 0.14s, background 0.13s, opacity 0.12s;
}
a:focus {
  opacity: 1;
  color: var(--primary);
}

/* ============= MISC SECTION SPACING ============= */
section {
  margin-bottom: 60px;
}
section:last-child {
  margin-bottom: 0;
}
.section, .about, .legal, .cta, .services, .features {
  margin-bottom: 60px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card {
  margin-bottom: 20px;
}

/* ============= TABLES, DL, OL, etc. ============= */
table, th, td {
  border: 1px solid var(--border);
  border-collapse: collapse;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 5px;
}
dt {
  font-weight: 600;
  margin-top: 7px;
}
dd {
  margin-left: 13px;
  margin-bottom: 8px;
}
ol {
  list-style-type: decimal;
  margin-left: 16px;
  margin-bottom: 8px;
}

/* ============= ICONS ============= */
img[alt^="icon-"] {
  filter: drop-shadow(0 1px 4px rgba(170,160,165, .03));
  margin-right: 5px;
  vertical-align: middle;
}

/* ===============================================
   MICRO-INTERACTIONS & TRANSITIONS
   =============================================== */
.card, .feature-grid li, .testimonial-card, .btn-primary, .btn, .cookie-banner, .cookie-modal {
  transition:box-shadow 0.21s, transform 0.2s, background 0.21s, color 0.2s, border 0.2s;
}

/* Subtle fade-in animation */
@keyframes fadeInSoft {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: none; }
}
.hero, .section, .testimonial-card, .feature-grid li {
  animation: fadeInSoft 0.9s cubic-bezier(.47,.5,.39,1) both;
}

/* ============= TESTIMONIALS: COLOR CONTRAST/READABILITY ============= */
.testimonials, .testimonial-slider, .testimonial-card {
  background: var(--white);
  color: var(--primary);
}
.testimonial-card p, .testimonial-card span {
  color: var(--primary-pastel) !important;
}

.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 450;
}
.testimonial-card .testimonial-user span {
  color: var(--primary-pastel) !important;
  font-size: 1rem;
  font-weight: 500;
}

/* ============= COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3100;
  background: linear-gradient(97deg,#FFF1C1 60%,#F8D6E2 100%);
  border-top: 2px solid #f3e19e;
  box-shadow: 0 -2px 18px rgba(26,34,53,0.14);
  padding: 28px 7vw 24px 7vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: fadeInSoft 0.37s cubic-bezier(.5,1.03,.47,1.01) both;
}
.cookie-banner .cookie-text {
  color: var(--primary);
  flex: 1 1 auto;
  max-width: 520px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .btn-cookie-accept, .cookie-banner .btn-cookie-reject, .cookie-banner .btn-cookie-settings {
  padding: 8px 20px;
  border-radius: 11px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 1px 5px rgba(247,169,0,.07);
  transition: background 0.16s, color 0.12s, box-shadow 0.14s;
}
.cookie-banner .btn-cookie-reject {
  background: #ececec;
  color: var(--primary);
}
.cookie-banner .btn-cookie-settings {
  background: var(--pink-pastel);
  color: var(--primary);
}
.cookie-banner .btn-cookie-accept:hover,
.cookie-banner .btn-cookie-accept:focus {
  background: #FFDA84;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(247,169,0,.18);
}
.cookie-banner .btn-cookie-reject:hover,
.cookie-banner .btn-cookie-reject:focus {
  background: #F5F5F5;
}
.cookie-banner .btn-cookie-settings:hover,
.cookie-banner .btn-cookie-settings:focus {
  background: var(--yellow-pastel);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px 14px 10px;
    font-size: 0.98rem;
  }
}

/* ============= COOKIE MODAL ============= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3110;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(26,34,53, 0.32);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInSoft 0.26s;
}
.cookie-modal {
  background: #fff;
  border-radius: 21px 21px 0 0;
  box-shadow: 0 -2px 22px rgba(26,34,53,0.17);
  max-width: 410px;
  width: 97vw;
  padding: 28px 26px 22px 26px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSoft 0.47s cubic-bezier(.65,1.03,.7,1.07) both;
  position: relative;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category label {
  margin-left: 12px;
  font-size: 1rem;
  color: var(--primary-pastel);
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-footer {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-save {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  padding: 8px 23px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.14s, color 0.13s;
  border: none;
}
.cookie-modal .btn-cookie-cancel {
  background: #ececec;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.14s, color 0.09s;
}
.cookie-modal .btn-cookie-save:hover, .cookie-modal .btn-cookie-save:focus {
  background: #FFDA84;
}
.cookie-modal .btn-cookie-cancel:hover, .cookie-modal .btn-cookie-cancel:focus {
  background: #f7e4e4;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-pastel);
  cursor: pointer;
  z-index: 3120;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--secondary);
}

/* ===============================================
   UTILITIES
   =============================================== */
.hide {
  display: none !important;
}
.full-width {
  width: 100%;
}
.rounded {
  border-radius: 28px !important;
}
.shadow-soft {
  box-shadow: var(--shadow) !important;
}
.bg-accent { background: var(--accent); }
.bg-white  { background: #fff; }
.bg-mint   { background: var(--mint-pastel); }
.bg-pink   { background: var(--pink-pastel); }
.bg-yellow { background: var(--yellow-pastel); }
.bg-purple { background: var(--purple-pastel); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

.mb-24 { margin-bottom: 24px !important; }
.mb-36 { margin-bottom: 36px !important; }

/* ===============================================
   END OF CSS
   =============================================== */
