/*--- CSS RESET & BASE ---*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #FFFBF7;
  color: #0D2A47;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}
::-webkit-input-placeholder {
  color: #777;
  opacity: 1;
}
::-moz-placeholder {
  color: #777;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #777;
  opacity: 1;
}
::placeholder {
  color: #777;
  opacity: 1;
}
a {
  color: #0D2A47;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #8EC0E4;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, li {
  list-style: none;
}

/*--- TYPOGRAPHY ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #0D2A47;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #8EC0E4;
  margin-bottom: 28px;
  line-height: 1.4;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}
strong {
  font-family: 'Montserrat', Arial, sans-serif;
}

/*--- CREATIVE ARTISTIC ELEMENTS & COLORS ---*/
:root {
  --primary: #0D2A47;
  --secondary: #FFFBF7;
  --accent: #8EC0E4;
  --highlight: #F487B6; /* Pink pop */
  --creative-coral: #FF6B52; /* Coral accent */
  --shadow: 0 4px 20px rgba(13,42,71,0.10);
  --creative-card-shadow: 0 8px 30px rgba(142,192,228,0.15);
  --creative-yellow: #FFE156;
}

/*--- CONTAINER & LAYOUT ---*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--creative-card-shadow);
}

/*--- HEADER & NAV ---*/
header {
  background: var(--primary);
  color: var(--secondary);
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 74px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
  background: var(--creative-yellow);
  outline: none;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 30px;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 10px 32px;
  margin-left: 12px;
  box-shadow: 0 4px 20px rgba(13,42,71,0.12);
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--highlight);
  color: #fff;
  transform: translateY(-2px) scale(1.033);
  box-shadow: 0 8px 32px rgba(244,135,182,0.18);
  outline: none;
}

/*--- MOBILE NAVIGATION ---*/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 10px;
  display: none;
  z-index: 130;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.16);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 82vw;
  max-width: 360px;
  background: var(--primary);
  padding: 35px 28px 28px 28px;
  box-shadow: -4px 0 18px rgba(13,42,71,0.31);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.66,.06,.19,.99);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 17px;
  right: 22px;
  cursor: pointer;
  z-index: 1500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #fff;
  font-weight: 600;
  padding: 14px 6px 12px 6px;
  border-bottom: 1px dotted var(--accent);
  letter-spacing: 0.03em;
  transition: color 0.13s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--highlight);
  background: rgba(255,255,255,0.07);
  outline: none;
}
@media (max-width: 1080px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 740px; }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 14px;
  }
  .header .container {
    gap: 7px;
  }
}
@media (max-width: 790px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block !important;
  }
}
@media (min-width: 791px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Sticky header shadow */
header.sticky {
  box-shadow: 0 2px 18px rgba(13,42,71,0.13);
}


/*--- HERO ---*/
.hero {
  padding-top: 52px;
  padding-bottom: 52px;
  background: linear-gradient(120deg, #FFFBF7 65%, var(--accent) 100%);
  border-radius: 0 0 35px 35px;
  box-shadow: 0 8px 32px 0 rgba(13,42,71,0.07);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/*--- FLEX LAYOUTS & CARD COMPONENTS ---*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--creative-card-shadow);
  padding: 24px 20px;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 12px 36px rgba(142,192,228,0.23);
  transform: translateY(-4px) scale(1.018);
}
.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;
  background: #fff;
  color: #0D2A47;
  box-shadow: 0 4px 22px rgba(142,192,228,0.15);
  border-radius: 18px;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
  flex: 1 1 330px;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 12px 44px rgba(13,42,71,0.17);
  transform: scale(1.024);
}
.testimonial-card p {
  color: #19283b;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 0.97rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/*--- FEATURES & GRIDS ---*/
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.feature-grid {
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(13,42,71,0.07);
  padding: 26px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.15s, transform 0.12s, border-left-color 0.14s;
  position: relative;
}
.feature:hover {
  box-shadow: 0 12px 28px rgba(244,135,182,0.15);
  border-left-color: var(--highlight);
  transform: translateY(-3px) scale(1.012);
}
.feature img {
  width: 40px;
  height: 40px;
}
.feature h3 {
  color: var(--primary);
}

/*--- TRUST SIGNALS ---*/
.trust-signals {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.trust-signals img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 7px;
}

/*--- ACCORDION, TABS, ETC. ---*/
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.accordion-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 16px 22px;
  box-shadow: 0 4px 15px rgba(244,135,182,0.15);
  border-left: 5px solid var(--creative-coral);
  transition: box-shadow 0.14s, border-left 0.2s;
}
.accordion-item h3 {
  color: var(--creative-coral);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.category-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(13,42,71,0.08);
  padding: 22px 18px;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  transition: box-shadow .13s, transform .13s;
  border-left: 5px solid var(--creative-yellow);
}
.category-list li:hover {
  box-shadow: 0 10px 30px rgba(255,225,86,0.18);
  transform: translateY(-2px) scale(1.03);
}
.category-list h3 {
  color: var(--creative-yellow);
}

/*--- CTA SECTIONS ---*/
.cta-section, .cta-form, .confirmation {
  text-align: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 25px;
  box-shadow: 0 4px 28px rgba(142,192,228,0.13);
  padding: 44px 22px;
  margin-bottom: 40px;
}
.cta-section h2, .cta-form h2, .confirmation h1 {
  color: var(--primary);
  margin-bottom: 20px;
}
.cta-section a.cta-btn, .cta-form button, .confirmation .cta-btn {
  margin-top: 16px;
}
.confirmation-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 22px;
  color: #23395d;
}

/*--- ADDRESS & LOCATION ---*/
.address-details {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}
.address-details img {
  width: 28px;
  height: 28px;
}
.geo-snippet {
  font-size: 1rem;
  color: #446193;
  margin-top: 10px;
}

/*--- FORMS ---*/
form, .short-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.short-form input {
  flex: 1 1 180px;
}
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.9px solid #d8dde7;
  border-radius: 12px;
  background: #fff;
  color: #18355a;
  padding: 13px 16px;
  transition: border 0.17s, box-shadow 0.13s;
  outline: none;
  margin-bottom: 6px;
  min-width: 0;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
textarea {
  min-height: 70px;
  resize: vertical;
}
form button, .short-form button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 24px;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 32px;
  transition: background 0.18s, color 0.17s, box-shadow 0.14s, transform 0.11s;
  cursor: pointer;
  margin-top: 12px;
}
form button:hover, form button:focus,
.short-form button:hover, .short-form button:focus {
  background: var(--highlight);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(244,135,182,0.19);
  outline: none;
}

/*--- TEAM/ABOUT/LEGAL ---*/
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.text-section {
  flex: 2 1 320px;
  padding: 0 10px;
  min-width: 220px;
}
.expertise {
  flex: 1 1 210px;
  padding: 0 10px;
  min-width: 170px;
}
.text-section ul, .expertise ul {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 12px;
}
.text-section li, .expertise li {
  margin-bottom: 4px;
  font-size: 0.99rem;
}
.legal .container {
  min-height: 420px;
}
.legal .text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(142,192,228,0.11);
  padding: 24px 20px;
  margin-top: 10px;
}

/*--- FOOTER ---*/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 36px 0 18px 0;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 22px rgba(13,42,71,0.12);
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.12s, background 0.09s;
  padding: 5px 10px;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--highlight);
  background: rgba(142,192,228,0.12);
  outline: none;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 0.99rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
footer p {
  font-size: 0.89rem;
  color: #b5d5ee;
  margin-top: 8px;
  margin-bottom: 0;
}

/*--- COOKIE BANNER ---*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 24px rgba(13,42,71,0.14);
  border-radius: 16px 16px 0 0;
  padding: 24px 20px 18px 20px;
  z-index: 2200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInSlideUp 0.65s cubic-bezier(.67,.08,.27,.98);
}
@keyframes fadeInSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0;
  cursor: pointer;
  transition: color 0.17s, background 0.19s, box-shadow 0.13s, transform 0.09s;
  box-shadow: 0 2px 10px rgba(13,42,71,0.07);
}
.cookie-banner .accept {
  background: var(--creative-yellow);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}
.cookie-banner .reject {
  background: var(--creative-coral);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--highlight);
  color: #fff;
  outline: none;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(13,42,71,0.37);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 46px 29px 32px 29px;
  border-radius: 24px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 10px 38px rgba(142,192,228,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownIn 0.45s cubic-bezier(.4,0,.2,1);
}
@keyframes slideDownIn {
  0% { opacity: 0; transform: translateY(-60px) scale(0.91); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--creative-coral);
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  z-index: 2400;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.23rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.08rem;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  width: 23px;
  height: 23px;
}
.cookie-category .locked {
  color: #bbb;
  font-size: 1.05rem;
  margin-left: 8px;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 14px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal button.save {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal button.save:hover, .cookie-modal button.save:focus {
  background: var(--highlight);
  color: #fff;
  outline: none;
}
.cookie-modal button.cancel {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-modal button.cancel:hover, .cookie-modal button.cancel:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 28px 7px;
  }
  .card-container, .feature-grid, .team-overview, .content-grid, .category-list {
    flex-direction: column !important;
    gap: 16px;
  }
  .testimonial-list {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center;
  }
  .address-details, .footer-contact {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .category-list li, .feature {
    min-width: 0;
    width: 100%;
  }
  .team-overview, .expertise {
    padding: 0;
  }
  .cta-section, .cta-form, .confirmation {
    padding: 28px 10px;
  }
}

/*--- CREATIVE DECORATIVE ELEMENTS ---*/
/* colorful circle in backgrounds */
.hero::before {
  content: "";
  position: absolute;
  left: -90px; top: -60px;
  width: 210px; height: 210px;
  background: var(--highlight);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: -70px; bottom: -40px;
  width: 175px; height: 175px;
  background: var(--creative-yellow);
  opacity: 0.10;
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 700px) {
  .hero::before, .hero::after { display: none; }
}

/*--- UTILS ---*/
.hide { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }
.gap-10 { gap: 10px; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 1.5px;
}

/*--- PRINT SUPPORT ---*/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, .cta-btn, header, footer {
    display: none !important;
  }
  main, .container, .section {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
}

/*--- END OF STYLES ---*/
