/* ------------------- CSS RESET & BASELINE ------------------- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #163250;
  background: #F5F7FA;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; display: block; height: auto; }
a { color: #163250; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
hr { border: none; border-top: 1px solid #E0E7EF; margin: 32px 0; }

/* Font faces (Google Fonts) - import in main HTML */
body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #163250;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 500; }

p, li, span, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #234266;
  line-height: 1.7;
}

/* ------------------- COMMON LAYOUT CLASSES ------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(22, 50, 80, 0.08);
  margin-bottom: 20px;
  padding: 32px 24px;
  min-width: 240px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px rgba(22, 50, 80, 0.14);
}

.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(22, 50, 80, 0.06);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 260px;
  max-width: 420px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GAP BETWEEN CARDS/SECTIONS */
.section, .accent {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card + .card,
.team-list > .profile-overview + .profile-overview,
.testimonial-card + .testimonial-card,
.blog-post-list > article + article {
  margin-left: 20px;
}

/* ------------------- HEADER/NAVIGATION ------------------- */
header {
  background: linear-gradient(90deg, #163250 0%, #22548b 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(22,50,80,0.08);
  position: relative;
  z-index: 202;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  min-height: 74px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 38px;
  margin-right: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
header nav a:hover {
  color: #AED1E6;
}
.cta-header {
  background: #AED1E6;
  color: #163250 !important;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  margin-left: 18px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(22,50,80,0.11);
  transition: background 0.2s, color 0.2s;
}
.cta-header:hover { background: #fff; color: #1B355A !important; }

/* ------------------- MOBILE NAVIGATION ------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: auto;
  z-index: 205;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #AED1E6;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #163250;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.72,-0.01,.44,1.01);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 16px 24px 32px;
  gap: 16px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #AED1E6;
  font-size: 2rem;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 8px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22548b;
  color: #AED1E6;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
  header nav { display: none; }
  .cta-header { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 768px) {
  header .container { gap: 18px; padding-top: 10px; padding-bottom: 10px; }
}

/* ------------------- HERO & ACCENT SECTIONS ------------------- */
.hero {
  background: linear-gradient(90deg, #AED1E6 0%, #fff 100%);
  padding: 64px 0 44px 0;
  min-height: 300px;
  margin-bottom: 44px;
}
.hero h1, .hero h2 {
  color: #163250;
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.hero p { font-size: 1.18rem; color: #234266; margin-bottom: 26px; }

.accent {
  background: #F5F7FA;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 14px rgba(22,50,80,0.04);
}

@media (max-width: 768px) {
  .hero { padding: 44px 0 30px 0; }
  .hero h1 { font-size: 1.6rem; }
}

/* ------------------- BUTTONS & CTAS ------------------- */
.cta-primary, .cta-secondary {
  display: inline-block;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 38px;
  margin-top: 12px;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  line-height: 1.1;
  box-shadow: 0 2px 16px rgba(22,50,80,0.09);
}
.cta-primary {
  background: #163250;
  color: #fff;
  border: 2px solid #163250;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22548b;
  border-color: #22548b;
  color: #fff;
}
.cta-secondary {
  background: #fff;
  color: #163250;
  border: 2px solid #AED1E6;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #AED1E6;
  color: #163250;
}

button, .cta-primary, .cta-secondary {
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}

/* ------------------- FEATURES / ADVANTAGES / USPs / LISTS ------------------- */
.features .feature-grid,
.advantages .usp-grid,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.features .feature-grid > div,
.advantages .usp-grid > div,
.team-list > .profile-overview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(22,50,80,0.06);
  padding: 28px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  min-height: 160px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features .feature-grid > div:hover,
.advantages .usp-grid > div:hover,
.team-list > .profile-overview:hover {
  box-shadow: 0 7px 30px rgba(22,50,80,0.13);
  transform: translateY(-3px) scale(1.04);
}
.features img, .advantages img, .profile-overview img, .icon-bullets img {
  height: 32px; width: 32px; margin-bottom: 12px;
}
.icon-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.icon-bullets li, .icon-bullets span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #234266;
}
.feature-grid h3, .usp-grid h3, .profile-overview h3 { font-size: 1.18rem; color: #163250; margin-bottom: 8px; }

/* ------------------- TESTIMONIALS ------------------- */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(102,177,229,0.06);
  margin-bottom: 60px;
  padding: 50px 0 40px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  background: #F5F7FA;
  color: #234266;
  box-shadow: 0 2px 14px rgba(22,50,80,0.07);
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 260px;
  max-width: 420px;
}
.testimonial-card p {
  color: #163250;
  font-size: 1.04rem;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #234266;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong { font-family: 'Merriweather', serif; font-weight: 600; }

/* Ensured dark text on light bg for accessibility */
.testimonials.accent, .testimonial-card {
  background: #F5F7FA;
  color: #163250;
}

/* ------------------- BLOG ------------------- */
.blog-posts .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.blog-posts article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(22,50,80,0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.blog-posts article:hover {
  box-shadow: 0 7px 30px rgba(22,50,80,0.13);
  transform: translateY(-3px) scale(1.03);
}
.blog-posts article h3 { font-size: 1.13rem; margin-bottom: 8px; color: #163250; }
.blog-posts article p { font-size: 0.97rem; color: #234266; margin-bottom: 13px; }
.blog-posts article a {
  color: #22548b;
  font-weight: 500;
  font-size: 1rem;
  padding: 1px 2px;
  border-bottom: 1px solid #AED1E6;
  transition: color 0.18s, border-bottom-color 0.18s;
}
.blog-posts article a:hover { color: #163250; border-bottom-color: #163250; }
.category-filter { margin-top: 18px; font-size: 1rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.category-filter a { color: #163250; font-weight: 500; transition: color 0.18s; }
.category-filter a:hover { color: #22548b; }

/* ------------------- LISTS & FAQ ------------------- */
ul, .legal ul, .faq ul { margin-left: 1.4rem; margin-bottom: 1.1rem; }
ul li, .legal ul li, .faq ul li { margin-bottom: 8px; font-size: 1rem; }

dl { margin: 18px 0; }
dt { font-weight: bold; display: block; margin-bottom: 6px; color: #163250; }
dd { margin-bottom: 18px; margin-left: 18px; color: #234266; }

/* ------------------- CTA BANNER ------------------- */
.cta-banner {
  background: linear-gradient(90deg, #AED1E6 0%, #fff 80%);
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(22,50,80,0.07);
  margin: 44px 0 0;
  padding: 36px 22px 40px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner h2 { margin-bottom: 12px; font-size: 1.6rem; color: #163250; }
.cta-banner p { color: #234266; margin-bottom: 18px; }

/* ------------------- FOOTER ------------------- */
footer {
  background: #163250;
  color: #AED1E6;
  font-size: 1rem;
  padding: 44px 0 28px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
footer img {
  height: 36px;
  margin-bottom: 22px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #AED1E6;
  transition: color 0.18s;
  font-size: 1rem;
}
footer nav a:hover { color: #F5F7FA; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 0.98rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  color: #fff;
}
.footer-contact img {
  width: 22px; height: 22px;
  margin: 0;
}

/* ------------------- FORMS (Kontaktseite etc.) ------------------- */
input, textarea, select {
  width: 100%;
  background: #F5F7FA;
  border: 1px solid #AED1E6;
  border-radius: 8px;
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #234266;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #22548b;
  box-shadow: 0 0 0 2px #AED1E655;
}
label { display: block; margin-bottom: 8px; color: #22548b; font-size: 1rem; font-weight: 500; }

/* ------------------- LEGAL / CONTENT PAGES ------------------- */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(22,50,80,0.08);
  padding: 46px 28px;
  margin-bottom: 44px;
}
.legal h1 { font-size: 2rem; margin-bottom: 14px; }
.legal h2 { margin-top: 28px; font-size: 1.25rem; margin-bottom: 10px; }
.legal ul { margin-left: 1.5rem; }
.legal li { margin-bottom: 8px; }

/* ------------------- TEAM SECTION ------------------- */
.team-section .team-list {
  gap: 28px;
}
.profile-overview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(22,50,80,0.06);
  padding: 26px 18px 20px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.profile-overview:hover {
  box-shadow: 0 8px 28px rgba(22,50,80,0.12);
  transform: translateY(-3px) scale(1.04);
}

.team-section ul { margin-bottom: 14px; }

/* ------------------- PRACTICE AREAS ------------------- */
.practice-areas ul {
  margin: 14px 0 24px 1.7rem;
}
.practice-areas ul li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px; font-size: 1.05rem;
  color: #163250;
}
.practice-areas ul img {
  width: 26px; height: 26px;
}
.practice-areas .icon-bullets {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: #22548b;
}
.practice-areas .icon-bullets span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.practice-areas .icon-bullets img {
  width: 24px; height: 24px;
}

/* ------------------- CONTACT DETAILS ------------------- */
.contact-details .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  margin-left: 1.6rem;
}
.contact-details .contact-info li {
  display: flex; align-items: center; gap: 12px; font-size: 1.02rem; color: #234266;
}
.contact-details .office-hours {
  margin-top: 8px;
  font-weight: 500;
  color: #163250;
  background: #F5F7FA;
  border-radius: 8px;
  padding: 8px 15px;
  display: inline-block;
  box-shadow: 0 1px 7px rgba(22,50,80,0.02);
}
.address-details ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
  margin-left: 1.6rem;
}
.office-location p img {
  vertical-align: middle;
  margin-right: 7px;
  height: 20px;
}

/* ------------------- CONFIRMATION PAGE ------------------- */
.confirmation {
  background: #AED1E6;
  color: #163250;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(22,50,80,0.07);
  padding: 48px 30px;
  text-align: center;
}
.confirmation h1 { font-size: 2rem; margin-bottom: 20px; }
.confirmation p { font-size: 1.1rem; margin-bottom: 14px; }

/* ------------------- SERVICES PAGE LISTS ------------------- */
.services-list ul {
  margin-bottom: 20px;
  padding-left: 1.6rem;
}
.services-list ul li {
  margin-bottom: 16px;
  font-size: 1.06rem;
  color: #234266;
}
.services-list ul h3 {
  font-size: 1.13rem;
  color: #163250;
  margin-bottom: 3px;
}
.services-list ul p {
  font-size: 1rem;
  color: #22548b;
}

/* ------------------- ANIMATIONS & TRANSITIONS ------------------- */
@media (prefers-reduced-motion: no-preference) {
  * {
    transition: color 0.16s, background 0.20s, box-shadow 0.16s, transform 0.22s;
  }
}

/* ------------------- RESPONSIVE DESIGN ------------------- */
@media (max-width: 1050px) {
  .container { max-width: 98vw; }
  .features .feature-grid, .advantages .usp-grid, .team-list, .blog-posts .blog-post-list, .testimonial-slider { gap: 18px; }
}
@media (max-width: 900px) {
  .features .feature-grid, .advantages .usp-grid, .team-list, .blog-posts .blog-post-list, .testimonial-slider {
    flex-direction: column;
    gap: 0;
  }
  .card, .features .feature-grid > div, .advantages .usp-grid > div, .profile-overview, .blog-posts article, .testimonial-card { margin-left: 0; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section, .accent { padding: 28px 6px; margin-bottom: 32px; }
  .hero { padding: 36px 0 24px 0; }
  .cta-banner { padding: 28px 6px 28px 6px; }
  .footer-contact span, footer .container { gap: 10px; flex-direction: column; align-items: flex-start; }
  .content-grid, .card-container, .features .feature-grid, .advantages .usp-grid, .team-list, .blog-posts .blog-post-list, .testimonial-slider { flex-direction: column; gap: 0; }
  .testimonial-card, .team-list > .profile-overview, .features .feature-grid > div, .advantages .usp-grid > div, .blog-posts article { margin-right: 0; min-width: 0; }
  .testimonial-card, .team-list > .profile-overview, .features .feature-grid > div, .advantages .usp-grid > div, .blog-posts article { width: 100%; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hero, .cta-banner, .confirmation, .legal { border-radius: 0; padding-left: 0; padding-right: 0; }
  .footer-contact { font-size: 0.97rem; }
}

/* ------------------- COOKIE CONSENT BANNER & MODAL ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #163250;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(22,50,80,0.11);
  padding: 20px 12px 18px 12px;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.99rem;
  flex-wrap: wrap;
  transition: transform 0.3s;
}
.cookie-banner span {
  color: white;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  display: flex; flex-direction: column; flex: 1;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
}
.cookie-btn.accept {
  background: #AED1E6;
  color: #163250;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F5F7FA;
}
.cookie-btn.reject {
  background: #fff;
  color: #163250;
  border: 1.4px solid #AED1E6;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #AED1E6;
}
.cookie-btn.settings {
  background: none;
  color: #AED1E6;
  border: 0;
  font-size: 0.98rem;
  padding: 7px 12px;
  text-decoration: underline;
}
.cookie-btn.settings:hover { color: #fff; }

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 30010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,50,80,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.2s;
}
@keyframes fadeInBackdrop { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #163250;
  border-radius: 18px;
  max-width: 94vw;
  width: 420px;
  box-shadow: 0 6px 34px rgba(22,50,80,0.18);
  padding: 32px 24px 24px 24px;
  z-index: 31000;
  position: relative;
  animation: modalSlideIn 0.22s cubic-bezier(.72,-0.01,.44,1.01);
}
@keyframes modalSlideIn { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal h2 { font-size: 1.2rem; margin-bottom: 16px; }
.cookie-modal .cookie-categories {
  margin-bottom: 22px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #22548b;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #AED1E6;
  width: 20px; height: 20px;
}
.cookie-modal .essential {
  color: #234266;
  font-weight: 500;
}
.cookie-modal .always-on {
  font-size: 0.92rem;
  color: #AED1E6;
  background: #163250;
  border-radius: 8px;
  padding: 2px 6px;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn.accept {
  min-width: 102px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  border: none;
  color: #163250;
  font-size: 2rem;
  z-index: 11;
  line-height: 1;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #AED1E6; }

@media (max-width:600px) {
  .cookie-modal { width: 97vw; padding: 20px 7px 14px 10px; }
}

/* ------------------- UTILITIES ------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

/* ------------------- INTERACTIONS / FOCUS STATES ------------------- */
a, button, .cta-primary, .cta-secondary, input, textarea {
  outline-offset: 2px;
}
a:focus, .cta-primary:focus, .cta-secondary:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid #22548b;
  outline-offset: 2px;
  z-index: 3;
}

/* Hide unneeded outline on mouse */
:focus:not(:focus-visible) { outline: none; }

/* ------------------- CUSTOM SCROLLBAR FOR MODERN FEEL ------------------- */
::-webkit-scrollbar { width: 10px; background: #F5F7FA; }
::-webkit-scrollbar-thumb { background: #AED1E6; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #22548b; }

/* ------------------- END OF CSS ------------------- */
