/* ------------------------------------------------------
   CSS RESET & NORMALIZATION (Mobile-first)
------------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #293D58;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #293D58;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECA937;
  text-decoration: none;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #293D58;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------ */
header {
  background: #fff;
  border-bottom: 1px solid #E6EDF7;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #293D58;
  text-decoration: none;
  padding: 8px 4px 4px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #ECA937;
  border-bottom: 2px solid #ECA937;
}
.cta-btn {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #fff;
  background: #293D58;
  border-radius: 24px;
  border: none;
  padding: 10px 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(41,61,88,.07);
}
.cta-btn:hover, .cta-btn:focus {
  background: #ECA937;
  color: #293D58;
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(236,169,55,0.14);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #293D58;
  border: none;
  font-size: 2rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
  z-index: 30;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D9E4F5;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 330px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px 0 rgba(41,61,88,0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,0,.2,1);
  z-index: 1100;
  padding: 28px 28px 32px 28px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #293D58;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 32px;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #D9E4F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  color: #293D58;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECA93722;
  color: #ECA937;
}

@media (max-width: 1024px) {
  header .container {
    max-width: 98vw;
    height: 62px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 10px 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 50px;
    min-height: 48px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------------------------------------------
   HERO SECTION (index only)
------------------------------------------------------ */
.hero {
  background: #D9E4F5 linear-gradient(90deg,#E6EDF7 0,#D9E4F5 100%);
  box-shadow: 0 4px 32px 0 rgba(41,61,88,.09);
}
.hero .container {
  min-height: 330px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding-top: 44px;
  padding-bottom: 44px;
  gap: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: 2.5rem;
  color: #293D58;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
  color: #293D58;
  opacity: .91;
  margin-bottom: 18px;
}

/* ------------------------------------------------------
   FEATURES SECTION
------------------------------------------------------ */
.features, .features-section {
  background: #fff;
}
.features .content-wrapper,
.features-section .content-wrapper {
  align-items: stretch;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7FAFD;
  border-radius: 24px;
  padding: 28px 22px 24px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 0 190px;
  box-shadow: 0 4px 24px 0 rgba(41,61,88,.09);
  border: 1px solid #E6EDF7;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.14s;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 1px;
  filter: grayscale(30%) brightness(1.07);
}
.feature-item h3 {
  font-size: 1.125rem;
  color: #293D58;
  margin-bottom: 6px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 36px 0 rgba(41,61,88,.17);
  border-color: #ECA93799;
  transform: translateY(-3px) scale(1.025);
}

/* ------------------------------------------------------
   SERVICE PREVIEW (index)
------------------------------------------------------ */
.services-preview {
  background: #fff;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.service-list li {
  font-size: 1.05rem;
  color: #293D58;
  margin-bottom: 0;
  padding-left: 0;
}

/* ------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------ */
.testimonials {
  background: #F7FAFD;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(41,61,88,.11);
  min-width: 250px;
  max-width: 360px;
  padding: 26px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s $ease, transform 0.14s;
  border: 1px solid #E6EDF7;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #293D58;
  font-family: 'Merriweather', Georgia, serif;
  margin-bottom: 10px;
}
.testimonial-author {
  display: block;
  font-size: 1rem;
  color: #656E7A;
  font-style: italic;
  text-align: right;
  width: 100%;
  margin-top: 4px;
}
.star-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(41,61,88,.16);
  transform: translateY(-2px) scale(1.025);
}

/* ------------------------------------------------------
   SECTIONS, SPACING, CARDS, LAYOUTS
------------------------------------------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(41,61,88,0.08);
  border: 1px solid #E6EDF7;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
}
.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;
}

/* FAQ, LEGAL, ABOUT TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #F7FAFD;
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 24px;
}
.text-section ul, .faq-list ul {
  list-style: square;
  margin-left: 26px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(41,61,88,.07);
  padding: 18px 20px;
  border-left: 3px solid #ECA937;
  transition: box-shadow 0.19s;
}
.faq-item:hover {
  box-shadow: 0 6px 18px 0 rgba(236,169,55,.12);
}

/* ------------------------------------------------------
   SERVICES PAGE SECTION GRID
------------------------------------------------------ */
.services-section {
  background: #fff;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.service-item {
  background: #F7FAFD;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(41,61,88,.08);
  border: 1px solid #E6EDF7;
  flex: 1 1 260px;
  max-width: 360px;
  min-width: 230px;
  padding: 26px 18px 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.22s, border-color 0.2s, transform 0.14s;
}
.service-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 5px;
  filter: grayscale(30%) brightness(1.07);
}
.service-item h2 {
  font-size: 1.15rem;
  color: #293D58;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 10px 36px 0 rgba(236,169,55,.11);
  border-color: #ECA937;
  transform: translateY(-3px) scale(1.018);
}

/* ------------------------------------------------------
   TEAM PAGE
------------------------------------------------------ */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: #F7FAFD;
  border-radius: 22px;
  box-shadow: 0 4px 20px 0 rgba(41,61,88,.09);
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 200px;
  padding: 23px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid #E6EDF7;
  transition: border 0.15s, box-shadow 0.18s;
}
.team-member img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  margin-bottom: 2px;
  box-shadow: 0 1px 6px 0 rgba(41,61,88,.11);
  background: #fff;
}
.team-member h2 {
  font-size: 1.12rem;
  margin-bottom: 2px;
}
.expertise-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.expertise-tags span {
  font-size: 0.91rem;
  color: #293D58;
  background: #E6EDF7;
  border-radius: 7px;
  padding: 4px 10px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ------------------------------------------------------
   FOOTER STYLES
------------------------------------------------------ */
footer {
  background: #293D58;
  color: #fff;
  padding: 44px 0 20px 0;
  font-size: 0.96rem;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
footer .logo img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 400;
  transition: opacity 0.18s, color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ECA937;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C5D7F0;
  font-size: 0.97rem;
  margin-bottom: 2px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 32px 0 14px 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    margin-top: 8px;
  }
}

/* ------------------------------------------------------
   THANK YOU / CTA SECTIONS
------------------------------------------------------ */
.cta-section {
  background: #E6EDF7;
  border-radius: 28px;
  margin-top: 46px;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px 0 rgba(41,61,88,.10);
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: #293D58;
  margin-bottom: 6px;
  font-size: 1.4rem;
}

/* News/aktuelles */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.news-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 13px 0 rgba(41,61,88,.06);
  border-left: 3px solid #ECA937;
  padding: 18px 20px;
  transition: box-shadow 0.17s;
}
.news-item h2 {
  font-size: 1.12rem;
}
.news-item .date {
  font-size: 0.95rem;
  opacity: .65;
  margin-bottom: 4px;
}
.legal-updates, .events-section {
  margin-bottom: 24px;
  background: #F7FAFD;
  border-radius: 10px;
  padding: 16px 18px;
}
.legal-updates ul {
  margin-left: 19px;
}

/* About, Datenschutz, Cookie, Legal Section Cards */
.legal-section {
  background: #fff;
}

/* ------------------------------------------------------
   RESPONSIVE DESIGN - MOBILE FIRST
------------------------------------------------------ */
@media (max-width: 1024px) {
  .feature-grid, .service-grid, .testimonial-slider, .team-list, .card-container {
    gap: 18px;
  }
  .section, .cta-section {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .hero .container {
    min-height: 180px;
    padding: 28px 6px;
  }
  .hero .content-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .feature-grid, .service-grid, .testimonial-slider, .team-list, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .section, .cta-section {
    margin-bottom: 28px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .news-item, .faq-item, .service-item, .feature-item, .team-member {
    max-width: 100%;
  }
  .container {
    padding: 0 6px;
  }
  .footer-contact div {
    font-size: 0.93rem;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------
   INTERACTIVE: BUTTONS, HOVERS, TRANSITIONS
------------------------------------------------------ */
button, .cta-btn {
  transition: background 0.19s, color 0.14s, box-shadow 0.22s, border 0.15s;
}
@media (hover: hover) {
  .cta-btn:hover, .cta-btn:focus {
    background: #ECA937;
    color: #293D58;
    text-decoration: none;
  }
  .service-item:hover, .feature-item:hover, .team-member:hover, .card:hover {
    box-shadow: 0 10px 32px 0 rgba(236,169,55,.11);
    border-color: #ECA937;
    transform: translateY(-2px) scale(1.018);
  }
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL (COMPATIBLE)
------------------------------------------------------ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #293D58;
  border-top: 1.5px solid #E6EDF7;
  box-shadow: 0 -2px 24px 0 rgba(41,61,88,.13);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 30px 22px 18px;
  font-size: 1rem;
  animation: slideInBottom 0.6s cubic-bezier(.45,0,.26,1);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 60vw;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #293D58;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  border-radius: 16px;
  border: 1px solid #293D58;
  padding: 9px 22px;
  font-size: 1rem;
  color: #293D58;
  background: #fff;
  cursor: pointer;
  font-family: 'Merriweather', Georgia, serif;
  transition: background 0.16s, color 0.18s;
}
.cookie-btn.accept {
  background: #293D58;
  color: #fff;
  border: 1px solid #293D58;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ECA937;
  color: #293D58;
}
.cookie-btn.reject {
  border: 1px solid #ECA937;
  color: #ECA937;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ECA93722;
  color: #293D58;
}
.cookie-btn.settings {
  border: 1px solid #D9E4F5;
  color: #293D58;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #D9E4F5;
  color: #293D58;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    gap: 12px;
    font-size: 0.95rem;
  }
  .cookie-consent-banner .cookie-actions {
    width: 100%;
    gap: 12px;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,61,88,0.36);
  z-index: 5200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s cubic-bezier(.5,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cookie-modal {
  background: #fff;
  color: #293D58;
  border-radius: 22px;
  box-shadow: 0 12px 64px 0 rgba(41,61,88,.16);
  padding: 38px 34px 26px 34px;
  width: 97vw;
  max-width: 420px;
  min-width: 235px;
  animation: zoomIn 0.30s cubic-bezier(.6,0,.4,1);
  position: relative;
}
@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.18rem;
  margin-bottom: 13px;
}
.cookie-category {
  margin-bottom: 18px;
  padding: 8px 0 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E6EDF7;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #D9E4F5;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  border: 1px solid #C5D7F0;
}
.cookie-toggle:checked {
  background: #ECA937;
  border: 1px solid #ECA937;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 6px 0 rgba(41,61,88,.13);
  transition: left 0.18s;
}
.cookie-toggle:checked:after {
  left: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
#cookie-category-essential-toggle {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: #293D58;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E6EDF7;
}

/* ------------------------------------------------------
   MICRO-ANIMATIONS FOR ELEMENTS
------------------------------------------------------ */
@keyframes slideInBottom {
  0% { transform: translateY(120%); }
  100% { transform: translateY(0); }
}

/* ------------------------------------------------------
   UTILITIES & MISCELLANEOUS
------------------------------------------------------ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.rounded { border-radius: 12px; }
.shadow-sm { box-shadow: 0 2px 8px 0 rgba(41,61,88,.08); }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Hide visually (for screenreaders) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ------------------------------------------------------
   PRINT STYLES
------------------------------------------------------ */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
