/* --- RESET & BASE TYPOGRAPHY --- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { 
  font-size: 16px;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F7F5F9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2B4E72;
  line-height: 1.7;
  font-size: 1rem;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 28px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #2B4E72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B801;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
}

/* BRAND FONT */
h1, h2, h3, h4, .cta-btn, .main-nav a, .footer-links h3, .footer-contact h3, .legal-links h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* --- CONTAINER & SPACING --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  align-items: flex-start;
}
.text-section {
  max-width: 820px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(43, 78, 114, 0.07);
  border-bottom: 1px solid #F7B80122;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #2B4E72;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7B801;
  color: #2B4E72;
}

.cta-btn {
  background: #F7B801;
  color: #2B4E72;
  font-size: 1.06rem;
  font-weight: 800;
  border: none;
  border-radius: 30px;
  padding: 11px 26px;
  box-shadow: 0 2px 8px rgba(247,184,1,0.13);
  transition: background 0.16s, color 0.16s, box-shadow 0.23s, transform 0.09s;
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2B4E72;
  color: #fff;
  box-shadow: 0 4px 12px rgba(247,184,1,0.22);
  transform: translateY(-1px) scale(1.035);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2B4E72;
  cursor: pointer;
  padding: 7px 16px;
  border-radius: 40px;
  transition: background 0.13s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7B80144;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(.7,.2,.23,1);
  box-shadow: 0 8px 48px rgba(43,78,114,0.09);
  display: flex;
  flex-direction: column;
  padding: 40px 34px 28px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none;
  border: none;
  color: #2B4E72;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 40px;
  z-index: 205;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F7B80144;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-weight: 700;
  color: #2B4E72;
  padding: 9px 8px;
  border-radius: 12px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7B801;
  color: #2B4E72;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 9px 18px;
    font-size: 1rem;
    margin-left: 6px;
  }
}

@media (max-width: 880px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(85deg, #F7F5F9 70%, #F7B80122 120%);
  padding: 64px 0 44px 0;
  margin-bottom: 54px;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 36px -16px rgba(247,184,1,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #2B4E72;
  margin-bottom: 8px;
  line-height: 1.17;
}
.hero p {
  font-size: 1.24rem;
  margin-bottom: 6px;
  color: #433D38;
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 44px 0 28px 0;
  }
}

/* --- FEATURES --- */
.features .content-wrapper {
  gap: 28px;
}
.features h2, .services h2, .about h2, .cta h2, .testimonials h2, .legal h1 {
  font-size: 2rem;
  margin-bottom: 6px;
  color: #2B4E72;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.features ul li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(43,78,114,0.07);
  padding: 26px 22px 18px 22px;
  min-width: 230px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  color: #2B4E72;
  font-size: 1.05rem;
  margin-bottom: 12px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.features ul li:hover {
  box-shadow: 0 8px 32px 0 rgba(247,184,1,0.13);
  transform: translateY(-2px) scale(1.018);
}
.features ul li strong {
  font-size: 1.15rem;
  color: #F7B801;
  margin-bottom: 2px;
}
.features ul li img {
  height: 38px;
  width: 38px;
}
.features h3 {
  font-size: 1.2rem;
}

@media (max-width: 860px) {
  .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li {
    min-width: 0;
    width: 100%;
  }
}

/* --- SERVICES --- */
.services .content-wrapper, .service-list, .service-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list, .service-grid {
  gap: 22px;
  flex-wrap: wrap;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(43,78,114,0.07);
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  min-height: 150px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow 0.19s, transform 0.13s;
  color: #2B4E72;
}
.service-item:hover {
  box-shadow: 0 8px 28px 0 rgba(247,184,1,0.17);
  transform: translateY(-2px) scale(1.012);
}
.service-item h3 {
  font-size: 1.20rem;
  color: #2B4E72;
}
.service-item p {
  font-size: 1rem;
  color: #433D38;
}
.service-price {
  color: #F7B801;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 6px;
}
@media (min-width: 700px) {
  .service-list, .service-grid {
    flex-direction: row;
  }
  .service-item {
    max-width: 300px;
    margin-bottom: 0;
    flex-basis: 260px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  background: #fff;
  color: #2B4E72;
  border-radius: 22px;
  padding: 34px 30px 28px 28px;
  min-width: 240px;
  max-width: 340px;
  box-shadow: 0 4px 36px 0 rgba(43,78,114,0.11);
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 48px 0 rgba(247, 184, 1, 0.09);
  transform: translateY(-3px) scale(1.022);
}
.testimonial-card p {
  color: #2B4E72;
  font-size: 1.05rem;
}
.testimonial-name {
  color: #F7B801;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 3px;
}
@media (max-width: 820px) {
  .testimonials-row {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* --- CTA (CALL TO ACTION) --- */
.cta {
  background: #2B4E72;
  color: #fff;
  border-radius: 32px;
  padding: 54px 0 48px 0;
  box-shadow: 0 8px 32px -12px rgba(43, 78, 114, 0.11);
  margin-top: 34px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 24px;
}
.cta h2 {
  color: #fff;
  font-size: 2.2rem;
}
.cta p {
  font-size: 1.13rem;
  color: #fff;
}
.cta .cta-btn {
  background: #F7B801;
  color: #2B4E72;
  box-shadow: 0 2px 14px rgba(247,184,1,0.13);
}
.cta .cta-btn:hover {
  background: #fff;
  color: #2B4E72;
  box-shadow: 0 6px 28px rgba(247,184,1,0.15);
}
@media (max-width: 650px) {
  .cta {
    border-radius: 18px;
    padding: 34px 0 28px 0;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
}

/* --- ABOUT --- */
.about .content-wrapper {
  max-width: 820px;
  gap: 18px;
}

/* --- CONTACT --- */
.contact .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 38px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.address-info {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,78,114,0.07);
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  color: #2B4E72;
}
.map-widget {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  background: #F7B80115;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(247,184,1,0.07);
  padding: 18px 14px 16px 14px;
  color: #2B4E72;
  min-width: 160px;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}
@media (max-width: 900px) {
  .contact .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- BLOG POSTS --- */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-post-list article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(43,78,114,0.07);
  padding: 24px 22px 18px 22px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #2B4E72;
  transition: box-shadow 0.17s, transform 0.11s;
}
.blog-post-list article:hover {
  box-shadow: 0 6px 22px 0 rgba(247,184,1,0.15);
  transform: translateY(-2px) scale(1.014);
}
.blog-author {
  font-size: 0.97rem;
  color: #F7B801;
}
@media (max-width: 820px) {
  .blog-post-list {
    flex-direction: column;
    gap: 16px;
  }
  .blog-post-list article {
    max-width: 100%;
  }
}
.topic-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.topic-tags span {
  background: #F7B801;
  color: #2B4E72;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 5px 14px;
  letter-spacing: 0.02em;
}

/* --- LEGAL SECTIONS --- */
.legal .content-wrapper {
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 16px 0 rgba(43,78,114,0.08);
  padding: 34px 28px 20px 28px;
  color: #2B4E72;
  margin: 22px auto 50px auto;
}
.legal h2 {
  margin-bottom: 6px;
  font-size: 1.6rem;
  color: #F7B801;
}
.legal h3 {
  font-size: 1.22rem;
  margin: 18px 0 3px 0;
  color: #2B4E72;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #F7B80133;
  padding: 42px 0 12px 0;
  margin-top: 44px;
  color: #2B4E72;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-brand img {
  height: 33px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex: 1 1 280px;
}
.footer-links h3 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: #2B4E72;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #2B4E72;
  transition: color 0.16s;
  border-radius: 6px;
  padding: 2px 7px;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #F7B801;
}
.footer-contact {
  flex: 1 1 220px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.footer-contact h3 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: #2B4E72;
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 7px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 8px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  background: #F7B801;
  border-radius: 42px;
  padding: 5px 10px 5px 8px;
  transition: background 0.15s;
}
.social-links a:hover {
  background: #2B4E72;
}
.social-links img {
  height: 21px;
  width: 21px;
  filter: drop-shadow(0 1px 2px #2B4E7266);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #666;
  font-size: 0.97rem;
  margin-top: 28px;
  margin-bottom: 3px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
}
@media (max-width: 950px) {
  .footer-columns {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-links {
    gap: 27px;
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe6;
  color: #2B4E72;
  padding: 22px 14px 20px 14px;
  box-shadow: 0 -6px 32px rgba(43,78,114,0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 3000;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  transition: transform 0.38s cubic-bezier(.7,.2,.23,1), opacity 0.19s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 300px;
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #2B4E72;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 22px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s, transform 0.09s;
  box-shadow: 0 1px 7px rgba(43,78,114,0.07);
}
.cookie-btn.settings {
  background: #F7B801;
  color: #2B4E72;
}
.cookie-btn.reject {
  background: #fff;
  color: #2B4E72;
  border: 2px solid #F7B801;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F7B801;
  color: #2B4E72;
  box-shadow: 0 3px 14px rgba(247,184,1,0.15);
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn.reject:hover {
  background: #2B4E72;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px 14px 10px;
    font-size: 0.97rem;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43,78,114,0.17);
  z-index: 3100;
  opacity: 1;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe6;
  color: #2B4E72;
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(247,184,1,0.13);
  max-width: 420px;
  width: 96vw;
  padding: 36px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.46s cubic-bezier(.39,1.18,.35,1.02);
  position: relative;
}
@keyframes cookieModalIn {
  from { transform: scale(0.85) translateY(22px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: #2B4E72;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #F7B80122;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  color: #2B4E72;
}
.cookie-category .cookie-toggle {
  width: 42px;
  height: 25px;
  border-radius: 20px;
  background: #F7B80144;
  position: relative;
  display: inline-block;
  margin-left: 14px;
  cursor: pointer;
}
.cookie-category .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .cookie-slider {
  position: absolute;
  top: 3px; left: 5px;
  width: 20px;
  height: 18px;
  border-radius: 18px;
  background: #F7B801;
  transition: all 0.2s;
}
.cookie-category .cookie-toggle input:not(:checked) + .cookie-slider {
  left: 1px;
  background: #F7B80166;
}
.cookie-category .cookie-toggle input:checked + .cookie-slider {
  left: 18px;
  background: #2B4E72;
}
.cookie-modal .cookie-btn {
  width: 100%;
  margin-top: 13px;
  padding: 12px 0;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 11px; right: 17px;
  background: none;
  border: none;
  color: #2B4E72;
  font-size: 1.67rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 20px;
  transition: background 0.13s;
}
.cookie-modal .close-modal-btn:hover {
  background: #F7B80144;
}

/* --- RESPONSIVE TYPOGRAPHY --- */
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 7px;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.20;
  margin-bottom: 4px;
}
h4, h5, h6 {
  font-size: 1em;
  margin-bottom: 4px;
}
@media (max-width: 500px) {
  h2 {
    font-size: 1.32rem;
  }
  h3 { font-size: 1.07rem; }
}

/* --- FLEXBOX SPACING & LAYOUTS --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; background: #fff; box-shadow: 0 2px 14px rgba(43,78,114,0.07); }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* --- MISCELLANEOUS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F7B80111;
}
::-webkit-scrollbar-thumb {
  background: #F7B80144;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #2B4E7233; }
::-moz-placeholder { color: #2B4E7233; }
:-ms-input-placeholder { color: #2B4E7233; }
::placeholder { color: #2B4E7233; }

/* --- TRANSITIONS/ANIMATIONS --- */
button, .cta-btn, .cookie-btn, a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s, border 0.15s;
}

/* --- Z-INDEX ENFORCEMENT FOR MENUS AND BANNERS --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 200 !important;
}
.cookie-modal-overlay {
  z-index: 3100 !important;
}

/* --- ACCESSIBILITY OUTLINE --- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .close-modal-btn:focus, input:focus {
  outline: 2px solid #F7B801;
  outline-offset: 2px;
}

/* Hide visually but stay accessible for accessibility helpers */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
