/* --- 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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #204055;
  background: #F6F7F8;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #39A9DB;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #205072;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  color: #205072;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; font-weight: 500; }

p, ul, ol, li {
  font-size: 1rem;
  color: #204055;
  margin-bottom: 1em;
}

blockquote {
  font-style: italic;
  background: #EBF8FA;
  border-left: 4px solid #39A9DB;
  padding: 18px 28px;
  border-radius: 8px;
  color: #205072;
  margin-bottom: 16px;
}

/* --- PASTEL COLOR PALETTE --- */
:root {
  --primary: #205072;
  --secondary: #39A9DB;
  --accent: #F6F7F8;
  --pastel-blue: #A3D8F4;
  --pastel-green: #C3F4DD;
  --pastel-purple: #D6DAF0;
  --pastel-pink: #FAD9E6;
  --pastel-yellow: #FFF9D6;
  --shadow: 0 4px 20px 0 rgba(74,144,226,0.11), 0 1.5px 4px 0 rgba(32,80,114,0.10);
  --radius: 18px;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- HEADER --- */
header {
  background: linear-gradient(90deg, #F6F7F8 60%, #D6DAF0 100%);
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.03);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  height: 68px;
  justify-content: space-between;
  position: relative;
  gap: 22px;
}
header a img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #205072;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background .18s, color .18s;
  letter-spacing: 0.005em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C3F4DD;
  color: #205072;
  text-decoration: none;
}

.cta-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  background: linear-gradient(90deg,#A3D8F4 76%,#D6DAF0 100%);
  color: #205072;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 24px;
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow 0.18s;
  outline: none;
  border: 1.5px solid transparent;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#C3F4DD 60%,#A3D8F4 100%);
  box-shadow: 0 4px 24px 0 rgba(74,144,226,0.19);
  color: #205072;
  border: 1.5px solid #39A9DB;
  text-decoration: none;
}

/* --- BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #A3D8F4;
  border: none;
  font-size: 2rem;
  color: #205072;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background .18s, box-shadow .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C3F4DD;
  outline: none;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(246,247,248,0.98);
  box-shadow: 0 8px 24px 0 rgba(32,80,114,0.07);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 36px 30px 0 40px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FAD9E6;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  color: #205072;
  align-self: flex-end;
  justify-self: flex-end;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D6DAF0;
  color: #205072;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.3rem;
  color: #205072;
  padding: 16px 0;
  border-radius: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3D8F4;
  color: #2084C4;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg,#FAD9E6 35%,#A3D8F4 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 40px rgba(163,216,244,0.07);
  margin-bottom: 60px;
  padding: 40px 0 64px 0;
}
.hero .container {
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #205072;
  font-size: 2.2rem;
}
.hero p {
  font-size: 1.25rem;
  color: #205072;
  margin-bottom: 26px;
}

/* --- SECTION BASE --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
section:not(.hero):not(.cta) {
  background: #fffde3;
  box-shadow: 0 6px 28px 0 rgba(239,181,218,0.07);
}

/**** FLEX LAYOUTS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow .16s;
}
.card:hover {
  box-shadow: 0 6px 32px 8px rgba(72,180,230,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;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1;
  min-width: 260px;
  max-width: 510px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(32,80,114,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.features-grid > div {
  flex: 1 0 220px;
  min-width: 210px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px 20px 22px 20px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(72,180,230,0.16);
}
.features-grid img {
  width: 44px; height: 44px; margin-bottom: 8px;
}
.features-grid h3 {
  font-size: 1.125rem;
  color: #205072;
  margin-bottom: 10px;
}
.features-grid p {
  font-size: 0.97rem;
  color: #3684A4;
}

.benefit-list {
  margin-bottom: 26px;
}
.benefit-list li {
  font-size: 1.07rem;
  color: #205072;
  margin-bottom: 6px;
  padding-left: 1em;
  position: relative;
}
.benefit-list li::before {
  content: '✔';
  color: #39A9DB;
  font-weight: 700;
  margin-left: -1.2em;
  margin-right: 0.5em;
  display: inline-block;
}
.trustmarks {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #205072;
}
.trustmarks img {
  width: 28px; height: 28px;
}

.cta {
  background: linear-gradient(94deg,#C3F4DD 40%,#A3D8F4 100%);
  margin-bottom: 0;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(163,216,244,0.14);
}
.cta h2 {
  color: #205072;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta p {
  font-size: 1.18rem;
  color: #347992;
  margin-bottom: 24px;
}

/* --- TEAM --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.team-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 16px 22px;
  min-width: 170px;
  flex: 1 0 170px;
  transition: box-shadow .14s;
}
.team-card:hover {
  box-shadow: 0 6px 18px #A3D8F4;
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-item {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px 18px 18px 18px;
  flex: 1 0 210px;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .16s;
  margin-bottom: 20px;
}
.service-item img {
  width: 44px; height: 44px;
}
.service-item h3 {
  font-size: 1.125rem; color: #205072;
}
.service-item p {
  color: #3684A4;
  font-size: 1rem;
}
.service-item:hover {
  box-shadow: 0 6px 28px 0 rgba(72,180,230,0.11);
}

/**** GUIDES & FAQ COMPONENTS ****/
.guide-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.guide-steps > div {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 18px;
  min-width: 180px;
  flex: 1 0 180px;
  color: #205072;
  margin-bottom: 20px;
  transition: box-shadow .15s;
}
.guide-steps > div:hover {
  box-shadow: 0 6px 22px #C3F4DD;
}

.tips-list {
  background: #A3D8F4;
  border-radius: 14px;
  padding: 12px 18px 14px 28px;
  color: #205072;
  font-size: 1rem;
  margin-bottom: 0;
}

.faq-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.faq-highlights > div {
  flex: 1 0 190px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
  transition: box-shadow .15s;
}
.faq-highlights > div:hover {
  box-shadow: 0 6px 18px #FAD9E6;
}

.resource-links {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resource-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.faq-list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  flex: 1 0 180px;
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-meta {
  margin-top: 8px;
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.success-stories {
  margin-bottom: 0;
  background: #FAD9E6;
  border-radius: 14px;
  padding: 18px 24px;
  font-size: 1.08rem;
  color: #205072;
}
.success-stories li {
  margin-bottom: 8px;
}

/**** CONTACT INFO & MAP ****/
.contact-info {
  background: #C3F4DD;
  border-radius: 14px;
  padding: 24px 20px 20px 36px;
  color: #205072;
  min-width: 240px;
  font-size: 1.08rem;
  margin-bottom: 24px;
}
.contact-info h3 {
  color: #205072;
  margin-top: 10px;
  margin-bottom: 2px;
}
.contact-info p, .contact-info a {
  color: #205072;
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.office-map img {
  width: 220px;
  height: auto;
}

/**** FOOTER ****/
footer {
  background: linear-gradient(90deg,#D6DAF0 70%,#C3F4DD 100%);
  padding: 0 0 10px 0;
  box-shadow: 0 -3px 18px 0 rgba(32,80,114,0.03);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  margin-top: 22px;
  margin-bottom: 8px;
}
.footer-logo img { width: 56px; height: auto; }
.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 1.06rem;
  color: #205072;
  margin-bottom: 12px;
}
.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li, .footer-legal li {
  margin-bottom: 7px;
}
.footer-links a, .footer-legal a {
  color: #205072;
  transition: color .14s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: #39A9DB;
}
.footer-contact ul {
  list-style: none;
  margin: 0 0 8px 0;
  padding-left: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 7px;
  color: #205072;
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #49719B;
  font-size: 0.96rem;
}

/* --- BUTTONS --- */
button, .cta-btn, .mobile-menu-toggle {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
button:active, .cta-btn:active { transform: translateY(1px); }

/**** COOKIE BANNER ----*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(32,80,114,0.13);
  border-radius: 16px 16px 0 0;
  padding: 28px 12px 18px 12px;
  min-height: 80px;
  animation: banner-in 0.42s cubic-bezier(.63,-0.28,.61,1.19);
  opacity: 1;
}
@keyframes banner-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1;
  font-size: 1.05rem;
  color: #205072;
  margin-right: 28px;
  align-self: center;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  border-radius: 18px;
  background: #A3D8F4;
  color: #205072;
  padding: 10px 22px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(163,216,244,.08);
  transition: background 0.16s, box-shadow 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #39A9DB;
  color: #fff;
}
.cookie-btn--secondary {
  background: #FAD9E6;
  color: #205072;
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #D6DAF0;
}
.cookie-btn--settings {
  background: #fffde3;
  color: #205072;
  border: 1.5px solid #A3D8F4;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #C3F4DD;
  color: #205072;
}

/* --- COOKIE CONSENT MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(32,80,114,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  animation: modal-in 0.34s cubic-bezier(.63,-0.28,.61,1.19);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(32,80,114,0.22);
  max-width: 420px;
  width: 93vw;
  padding: 38px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__content h3 {
  font-size: 1.22rem;
  margin-bottom: 16px;
}
.cookie-modal__section {
  background: #F6F7F8;
  border-radius: 12px;
  padding: 14px 22px 14px 22px;
  margin-bottom: 12px;
}
.cookie-modal__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  font-size: 1rem;
}
.cookie-modal__switch input[type="checkbox"] {
  accent-color: #39A9DB;
  width: 18px; height: 18px;
}
.cookie-modal__footer {
  display: flex; gap: 13px; margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 26px; top: 20px;
  background: #FAD9E6;
  border: none; border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.35rem; color: #205072;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #C3F4DD;
}

/**** FORM ELEMENTS ****/
input,textarea,select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1.5px solid #A3D8F4;
  background: #fff;
  margin-bottom: 12px;
  color: #205072;
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus,textarea:focus,select:focus {
  outline: none;
  border: 1.5px solid #39A9DB;
  box-shadow: 0 2px 9px #A3D8F4;
}

/**** UTILITIES ****/
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-3 { margin-top: 20px; }
.mb-3 { margin-bottom: 20px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 18px; }

/**** RESPONSIVE DESIGN ****/
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .footer-grid, .features-grid, .service-list, .team-list, .guide-steps, .testimonial-list, .faq-highlights, .faq-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-links, .footer-contact, .footer-legal {
    min-width: 0; max-width: 100%;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    height: 62px;
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 11px 15px;
    font-size: 1.04rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 12px;
  }
  .content-grid,.features-grid,.service-list,.team-list,.guide-steps,.testimonial-list,.faq-highlights,.faq-list {
    flex-direction: column;
    gap: 15px;
  }
  .hero .container { min-height: 210px; }
  .section,.hero,.cta {
    padding: 24px 8px;
    border-radius: 0 0 22px 22px;
  }
  .content-wrapper {
    padding-right: 0; padding-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .contact-info { padding: 18px 8px 16px 18px; }
  .office-map img { width: 100px; }
  .cookie-modal__content { padding: 18px 10px 18px 10px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .hero h1 { font-size: 1.16rem; }
  .section, .hero, .cta { padding: 14px 4px; }
  .cookie-banner { flex-direction: column; padding: 14px 5px; }
  .cookie-banner__text { margin-right: 0; margin-bottom: 10px; }
}

/**** NO OVERLAP & CONSISTENT SPACING ****/
section, .card, .team-card, .service-item, .guide-steps > div, .faq-highlights > div, .faq-list > div, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .features-grid, .team-list, .service-list, .guide-steps, .faq-highlights, .faq-list, .testimonial-list {
  gap: 20px;
}

/**** Z-INDEX ---***/
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 3000; }

/**** ACCESSIBILITY ****/
:focus-visible {
  outline: 2.5px solid #39A9DB;
  outline-offset: 1.5px;
}

/* --- END --- */