/* CSS RESET & BASE STYLES ========================================== */
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 {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7FA;
  color: #222533;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #27336A;
  text-decoration: none;
  transition: color 0.24s cubic-bezier(.4,0,.2,1);
  font-weight: 700;
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  margin-bottom: 16px;
  color: #27336A;
  letter-spacing: .03em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem; /* 24px */
}
h3 {
  font-size: 1.125rem; /* 18px */
}
strong, b {
  font-weight: 700;
  color: #27336A;
}
p, li, address {
  font-size: 1rem; /* 16px */
  color: #222533;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(39,51,106,0.06);
}

/* FLEXBOX STRUCTURES ========================================= */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container, .feature-grid, .card-grid, .testimonial-slider, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-grid, .card-container, .card-grid, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(39,51,106,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: transform .20s cubic-bezier(.4,0,.2,1), box-shadow .20s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 40px 0 rgba(39,51,106,0.16);
  z-index: 2;
}

/* NAVIGATION & HEADER ========================================= */
header {
  background: #27336A;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 300;
  box-shadow: 0 4px 16px 0 rgba(39,51,106,0.17);
}
.logo-header {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 20px;
}
.logo-header img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px 0 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  padding: 10px 0 10px 0;
  border-radius: 4px;
  position: relative;
  letter-spacing: .02em;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD700;
}
.main-nav .cta {
  background: #FFD700;
  color: #27336A;
  padding: 10px 28px;
  border-radius: 22px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-left: 16px;
  transition: background 0.20s linear, color 0.20s linear, box-shadow .18s;
  box-shadow: 0 2px 10px #b8c1d4a1;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #27336A;
  color: #FFD700;
  box-shadow: 0 6px 24px 0 #ffd70030;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.25rem;
  color: #FFD700;
  margin: 0 16px 0 auto;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 999;
}
@media (max-width: 1200px) {
  .main-nav .cta {
    padding: 10px 16px;
    font-size: .98rem;
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 16px;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: .96rem;
  }
  .logo-header {
    padding: 0 10px;
    height: 58px;
  }
  .logo-header img {
    height: 40px;
  }
}

/* MOBILE NAVIGATION ========================================= */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 96vw;
  max-width: 380px;
  height: 100vh;
  background: #27336A;
  box-shadow: -6px 0 28px -4px #30395f80;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 18px 0 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FFD700;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbd7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0 24px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .18s;
}
.mobile-nav a:hover {
  color: #FFD700;
  border-color: #FFD700;
}
.mobile-nav a.cta {
  background: #FFD700;
  color: #27336A;
  border-radius: 22px;
  padding: 12px 22px;
  font-weight: 800;
  border: none;
}

/* HERO SECTIONS ========================================= */
.hero, .thankyou-hero {
  background: #27336A linear-gradient(120deg, #27336A 78%, #FFD700 200%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 32px 0 #27336A22;
  margin-bottom: 44px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1, .thankyou-hero h1 {
  color: #FFD700;
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero .subheadline, .thankyou-hero .subheadline { 
  color: #B8C1D4;
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero .cta, .thankyou-hero .cta { 
  display: inline-block;
  margin-top: 22px;
  background: #FFD700;
  color: #27336A;
  border-radius: 24px;
  padding: 16px 38px;
  font-size: 1.15rem;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 2px 24px #FFD70055;
  transition: background 0.18s, color 0.18s, transform .15s, box-shadow .2s;
}
.hero .cta:hover, .thankyou-hero .cta:hover {
  background: #27336A;
  color: #FFD700;
  box-shadow: 0 6px 32px #FFD70088, 0 2px 8px #fff;
  transform: translateY(-2px) scale(1.06);
}

@media (max-width: 768px) {
  .hero, .thankyou-hero {
    padding-top: 38px;
    padding-bottom: 40px;
    border-radius: 0 0 20px 20px;
  }
  .hero h1, .thankyou-hero h1 {font-size: 1.55rem;}
}

/* BUTTONS & CTAS ========================================= */
.cta, .partnerschaft-cta .cta, .beratung-cta .cta, .kalender-cta .cta, .thankyou-cta .cta, .contact-short .cta, section.cta .cta {
  display: inline-block;
  background: #FFD700;
  color: #27336A;
  border-radius: 22px;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  box-shadow: 0 2px 16px #FFD70025;
  margin-top: 16px;
  transition: background 0.16s, color 0.16s, transform .12s, box-shadow .14s;
  cursor: pointer;
  border: none;
  letter-spacing: .05em;
}
.cta:hover, .cta:focus {
  background: #27336A;
  color: #FFD700;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 8px 32px #ffd70050, 0 2px 8px #fff;
  outline: none;
}

/* FEATURE/USP STYLES ========================================= */
.features, .astrologischer-kalender, .feature-grid {
  background: #fff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F7FA;
  border-radius: 15px;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 1px 8px rgba(39,51,106,.09);
  min-width: 202px;
  max-width: 320px;
  flex: 1 1 210px;
  position: relative;
  transition: box-shadow .15s, transform .14s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.15rem;
  color: #27336A;
  font-weight: 900;
  margin-bottom: 0;
}
.feature-item p {
  font-size: .97rem;
  color: #27336A;
}
.feature-item:hover {
  box-shadow: 0 6px 32px #b8c1d435;
  transform: translateY(-4px) scale(1.04);
  z-index: 2;
}

/* ABOUT / VALUE LISTS ========================================= */
.usp-list, .value-list, .benefit-list, .contact-list, .service-list, .step-list, .service-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 14px;
}
.usp-list li, .value-list li, .benefit-list li, .contact-list li, .service-list li, .step-list li, .service-options li {
  position: relative;
  padding-left: 22px;
  color: #27336A;
  font-weight: 650;
  font-size: 1rem;
}
.usp-list li:before, .value-list li:before, .benefit-list li:before, .contact-list li:before, .service-list li:before, .step-list li:before, .service-options li:before {
  content: '◆';
  color: #FFD700;
  font-size: 0.96em;
  position: absolute;
  left: 0;
  top: 1px;
}
@media (max-width: 700px) {
  .usp-list, .value-list, .benefit-list, .contact-list, .service-list, .step-list, .service-options {
    gap: 11px;
  }
}

/* TESTIMONIALS ========================================= */
.testimonials {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 18px #B8C1D422;
  padding: 38px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F6F7FA;
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 1px 5px #B8C1D455;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 430px;
  flex: 1 1 260px;
  transition: box-shadow .15s, transform .17s;
}
.testimonial-card p {
  color: #27336A;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
}
.testimonial-card .testimonial-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #222533;
  font-size: 1rem;
  margin-bottom: 4px;
}
.star-rating {
  color: #FFD700;
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #B8C1D4aa;
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 768px) {
  .testimonial-slider, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
  }
}

/* FOOTER ========================================= */
footer {
  background: #27336A;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 22px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 22px 0 rgba(39,51,106,0.17);
  margin-top: 90px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-nav nav,
.footer-menu nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav nav a,
.footer-menu nav a {
  color: #B8C1D4;
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: 1px;
  letter-spacing: .01em;
  transition: color .12s;
}
.footer-nav nav a:hover, .footer-menu nav a:hover {
  color: #FFD700;
}
.footer-contact address {
  font-style: normal;
  font-size: .98rem;
  color: #fff;
  line-height: 1.7;
  margin-top: 8px;
}
.footer-contact a {
  color: #FFD700;
  font-weight: 600;
  font-size: 1rem;
}
.footer-social {
  display: flex;
  gap: 17px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: filter .18s, transform .13s;
  border-radius: 7px;
  background: #fff;
  padding: 3px;
}
.footer-social a:hover img {
  filter: brightness(0.9) drop-shadow(0 0 8px #FFD70088);
  transform: scale(1.07) rotate(-7deg);
}
@media (max-width: 1024px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
  footer {
    border-radius: 16px 16px 0 0;
    margin-top: 48px;
    padding-top: 12px;
  }
}

/* CARDS ========================================= */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 9px #27336A13;
  position: relative;
  padding: 26px 20px;
  flex: 1 1 260px;
  transition: box-shadow .16s, transform .16s;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.card:hover { 
  box-shadow: 0 6px 24px #B8C1D422;
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 700px) {
  .card-container, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* STEPS, LISTS, HIGHLIGHTS ==================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: stp;
  margin-bottom: 15px;
  padding-left: 0;
}
.step-list li {
  position: relative;
  padding-left: 40px;
  color: #27336A;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 4px;
}
.step-list li:before {
  counter-increment: stp;
  content: counter(stp) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12em;
}
.benefit-highlights {
  margin-top: 24px;
}
.benefit-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-highlights li {
  color: #27336A;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.benefit-highlights li:before {
  content: '\2605';
  color: #FFD700;
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 1.5px;
}
@media (max-width: 700px) {
  .step-list li {
    font-size: .96rem;
    padding-left: 28px;
  }
  .step-list li:before {
    left: 0;
    font-size: .96em;
  }
}

/* MAP SNIPPET, ADDRESS DETAILS ========================================= */
.address-details {
  font-weight: 700;
  color: #27336A;
  font-size: 1.07rem;
  margin-bottom: 14px;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #B8C1D4;
  border-radius: 9px;
  padding: 8px 15px;
  max-width: 295px;
}
.map-snippet img {
  width: 28px;
  height: 28px;
  display: block;
}
.map-snippet span {
  color: #27336A;
  font-weight: 700;
  font-size: 1em;
}
@media (max-width: 700px) {
  .map-snippet {
    max-width: 100%;
    padding: 5px 10px;
  }
}

/* MISCELLANEOUS ========================================= */
.content-wrapper h2 {
  font-size: 1.45rem;
  color: #27336A;
  font-weight: 900;
  margin-bottom: 5px;
}
.content-wrapper > p {
  font-size: 1.08rem;
  color: #27336A;
}
.about-section, .about, .team {
  background: #F6F7FA;
  border-radius: 24px;
  box-shadow: 0 2px 14px #B8C1D411;
  margin-bottom: 34px;
  padding: 28px 18px;
}
.credentials ul {
  margin-top: 10px;
}
.credentials li {font-weight: 600; color: #27336A;}
.pdf-sample-download a {
  display: inline-block;
  color: #FFD700;
  font-weight: 800;
  font-size: 1.08rem;
  transition: color .18s;
}
.pdf-sample-download a:hover {
  color: #27336A;
  text-decoration: underline;
}

.information-box {
  background: #B8C1D4;
  color: #27336A;
  font-weight: 600;
  border-radius: 12px;
  padding: 18px 14px;
  margin: 22px 0 0 0;
  font-size: .98rem;
}
.result-display {
  background: #FFD70011;
  color: #27336A;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 14px 12px;
  margin: 12px 0;
  font-weight: 700;
}

/* Content highlight/alert */
.text-section {
  margin: 16px 0 0 0;
}
.text-section h3 {
  font-size: 1.08rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  margin-bottom: 6px;
}
.text-section ul li {
  font-size: .98rem;
  color: #27336A;
}

/* LEGAL PAGES ========================================= */
.legal-data, .legal-terms, .gdpr, .cookies {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 1.5px 14px #27336A11;
  padding: 32px 20px;
  margin-bottom: 42px;
}
.legal-data h1, .legal-terms h1, .gdpr h1, .cookies h1 {
  color: #27336A;
  font-size: 1.75rem;
  font-weight: 900;
}
.legal-data h2, .legal-terms h2, .gdpr h2, .cookies h2 {
  color: #27336A;
  font-size: 1.24rem;
  font-weight: 800;
}

/* RESPONSIVE STYLES & UTILITIES ================================ */
@media (max-width: 992px) {
  .container {max-width: 99vw;}
  .hero, .thankyou-hero {margin-bottom: 30px;}
}
@media (max-width: 600px) {
  .container {padding: 0 6px;}
  section, .section {padding: 18px 2px; border-radius: 8px;}
}
@media (max-width: 420px) {
  .hero, .thankyou-hero {padding-top: 18px; padding-bottom: 21px;}
}

/* ANIMATIONS ========================================= */
@media (prefers-reduced-motion: no-preference) {
  .main-nav a,
  .mobile-nav a,
  .cta,
  .card, .feature-item,
  .testimonial-card, .footer-social a img {
    transition: all .16s cubic-bezier(.4,0,.2,1);
  }
  .mobile-menu {
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .mobile-menu-close {
    transition: color .15s;
  }
  .cta:hover,
  .feature-item:hover,
  .testimonial-card:hover,
  .card:hover,
  .footer-social a:hover img {
    transition: all .18s cubic-bezier(.4,0,.2,1);
  }
}

/* COOKIE BANNER ========================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27336A;
  color: #FFD700;
  width: 100vw;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10px;
  box-shadow: 0 -3px 24px #27336A88;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .27s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.cookie-banner-text {
  font-size: 1.02rem;
  line-height: 1.4;
  color: #FFD700;
  flex: 1 1 240px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: #FFD700;
  color: #27336A;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: .98rem;
  font-weight: 800;
  margin: 0;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6F7FA;
  color: #27336A;
  outline: none;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-weight: 800;
  transition: background .16s, color .16s, border .14s;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #FFD700;
  color: #27336A;
}
@media (max-width:600px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    font-size: .98rem;
    padding: 18px 4vw;
  }
}

/* COOKIE PREFERENCES MODAL ================================== */
.cookie-modal-backdrop {
  background: rgba(39,51,106,0.46);
  position: fixed;
  z-index: 10005;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #27336A;
  max-width: 390px;
  width: 93vw;
  border-radius: 22px;
  box-shadow: 0 4px 40px #27336A42;
  padding: 34px 20px 22px 20px;
  z-index: 10010;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.23s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  0% {transform: translateY(-50px) scale(.95); opacity: 0;}
  80%{transform: translateY(7px) scale(1.03);}
  100% {transform: none; opacity: 1;}
}
.cookie-modal h3 {
  color: #27336A;
  font-size: 1.17rem;
  font-weight: 900;
}
.cookie-modal-category {
  margin-bottom: 11px;
  font-weight: 700;
  color: #27336A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-switch {
  width: 44px;
  height: 22px;
  background: #B8C1D4;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 9px;
  transition: background .17s;
}
.cookie-switch[data-enabled="true"] {
  background: #FFD700;
}
.cookie-switch-toggle {
  position: absolute;
  top: 1.5px;
  left: 2px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: left .15s cubic-bezier(.4,0,.2,1), background .12s;
  box-shadow: 0 1px 4px #B8C1D455;
}
.cookie-switch[data-enabled="true"] .cookie-switch-toggle {
  left: 22px;
  background: #27336A;
}
.cookie-toggle-lock {
  color: #27336A;
  font-size: 1.2em;
  font-weight: 800;
}
.cookie-modal-save-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .cookie-btn {
  padding: 9px 21px;
  border-radius: 17px;
  font-size: .98rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #27336A;
  font-size: 1.36rem;
  cursor: pointer;
  font-weight: 900;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD700;
}
@media (max-width: 500px){
  .cookie-modal{padding: 20px 6px; max-width: 98vw;}
}

/* UTILITIES ========================================= */
.text-center {text-align: center;}
.mb-0 {margin-bottom: 0 !important;}
.mt-0 {margin-top: 0 !important;}
.mt-2 {margin-top: 16px !important;}
.mb-2 {margin-bottom: 16px !important;}
.gap-8 {gap: 8px !important;}
.gap-20 {gap: 20px !important;}

/* Hide elements for acc. accessibility / scripts  */
.hide, .hidden {display:none !important;}

/* Custom scrollbars for desktop ============================== */
@media (min-width: 900px) {
  ::-webkit-scrollbar {
    width: 9px;
    background: #B8C1D4;
    border-radius: 7px;
  }
  ::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 9px;
  }
}

/* END */
