/* RESET && NORMALIZE --------------- */
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, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
  background: #F9F9F9;
  color: #222222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #247B6D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183F38;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
/* TYPOGRAPHY ----------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 {font-size: 2.5rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 14px;}
h3 {font-size: 1.5rem; margin-bottom: 10px; font-weight: 600;}
h4 {font-size: 1.25rem; margin-bottom: 8px;}
.section h1, .section h2, .section h3, .section h4 {margin-top: 0;}
p, li {
  font-family: Arial, sans-serif;
  color: #222222;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {font-weight: 700;}
em, i {font-style: italic;}

/* COLOR PALETTE VIA CSS VARS --- */
:root {
  --color-primary: #247B6D;
  --color-primary-dark: #183F38;
  --color-secondary: #F9F9F9;
  --color-text-dark: #222222;
  --color-card: #fff;
  --color-accent: #FFC830;
  --color-accent-dark: #D8AB1B;
  --shadow-light: 0 4px 16px rgba(44, 59, 68, 0.06);
  --border-radius: 12px;
}

/* LAYOUT CONTAINERS -------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FLEXBOX LAYOUTS ---------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F8F7;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(40,66,56,0.07);
  margin-bottom: 20px;
  border: 1px solid #E7ECEA;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEXBOX GRIDS FOR FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  background: #F6F7F6;
  border-radius: var(--border-radius);
  padding: 28px 18px 22px 18px;
  box-shadow: 0 2px 10px #ededed33;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.feature img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* BUTTONS ----------------------- */
button, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(36,123,109,0.07);
  transition: background 0.15s, box-shadow 0.2s, color 0.15s;
  margin-bottom: 0;
  outline: none;
}
.cta {
  background: var(--color-primary);
  color: #fff;
  margin-top: 14px;
  letter-spacing: 0.2px;
}
button.cta, a.cta, input[type="submit"].cta {
  background: linear-gradient(90deg, var(--color-primary) 80%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 0 2px 12px #e2e8e511;
}
button.cta:hover, a.cta:hover, input[type="submit"].cta:hover, button:focus, .cta:focus {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px #e2e8e588;
  text-decoration: none;
}
button:active, .cta:active {
  background: var(--color-accent-dark);
  color: var(--color-primary-dark);
}

/* HEADER NAVIGATION ------------ */
header {
  background: #fff;
  box-shadow: 0 2px 12px #ebebeb3c;
  padding: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  padding: 0 18px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222222;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta {
  color: #fff;
  background: var(--color-accent);
  margin-left: 10px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
header nav a:not(.cta):hover, header nav a:not(.cta):focus {
  background: #F4FAF9;
  color: var(--color-primary);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: var(--color-primary);
  color: #fff;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}

/* MOBILE NAVIGATION ----------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 32px #247b6d17;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(0.77,0.05,0.85,0.15);
  display: flex;
  flex-direction: column;
  z-index: 1100;
  padding: 0 0 28px 0;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 60px #2224;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 20px 20px 6px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1501;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-accent);
  background: #f6fbf9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 30px;
}
.mobile-nav a {
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--color-primary-dark);
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4FAF9;
  color: var(--color-primary);
}

/* MOBILE NAV VISIBLE/HIDDEN */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ------------------ */
.hero-section {
  background: linear-gradient(120deg, #F6F7F6 80%, #E6F7F4 100%);
  padding: 62px 0 58px 0;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
  gap: 16px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
  margin-bottom: 12px;
}
.hero-section p {
  color: #3c544a;
  font-size: 1.22rem;
  margin-bottom: 16px;
}

/* SECTION VARIANTS -------------- */
.features {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services-overview, .service-benefits, .about-section, .team-section, .values-section, .faq-section,
.support-section, .contact-details-section, .hours-section, .legal-section, .gdpr-section, .tos-section, .cookie-section, .thank-you-section {
  background: var(--color-card);
}
.cta {
  background: #E6F7F4;
  box-shadow: none;
  border-radius: var(--border-radius);
  text-align: left;
  gap: 18px;
  padding: 40px 20px 30px 20px;
}
.cta h2 {color: var(--color-primary);}

/* TESTIMONIALS ------------------ */
.testimonials {
  background: #F9FAF8;
  padding: 54px 0 54px 0;
  margin-bottom: 54px;
}
.testimonials h2 {
  text-align: left;
  color: var(--color-primary-dark);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #1C2722;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #555;
  font-family: Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px #527b6d1b;
  background: #fff;
  border-color: var(--color-accent);
  transform: translateY(-3px) scale(1.015);
  transition: box-shadow 0.18s, border 0.2s, background 0.13s, transform 0.2s;
}

/* CARDS ------------------------- */
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px #ededed44;
  padding: 22px 18px 18px 18px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 350px;
}
.service-details,
.service-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-categories ul li {
  background: var(--color-secondary);
  border-radius: 18px;
  padding: 7px 24px;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}

/* PRICING/TABLES ---------------- */
.pricing-section,
.compare-section {
  margin-bottom: 60px;
  padding: 36px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}
.pricing-table, .comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #F9F9F9;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td, .comparison-table th, .comparison-table td {
  border: 1px solid #ECF1EE;
  padding: 12px 10px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th, .comparison-table th {
  background: #FCFBF8;
  color: var(--color-primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tbody tr:nth-child(even), .comparison-table tbody tr:nth-child(even) {
  background: #F6F8F7;
}
.note {
  font-size: 0.93rem;
  color: #666;
  margin-top: 4px;
}

/* FAQ ACCORDION ----------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F7FDFB;
  border: 1px solid #EDF2EF;
  border-radius: 10px;
  transition: box-shadow 0.2s;
  padding: 18px 16px;
  box-shadow: 0 2px 8px #e7ecea09;
}
.faq-item h2 {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary-dark);
  cursor: pointer;
}
.faq-item.active, .faq-item:focus-within {
  box-shadow: 0 4px 16px #dce7da21;
  border-color: var(--color-accent);
}
.faq-answer {
  margin-top: 10px;
  color: #222;
  font-size: 1rem;
}

/* SUPPORT SECTION --------------- */
.support-section {
  background: #fffce6;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px #ffeccc19;
  margin-bottom: 44px;
  padding: 28px 20px;
}
.support-section a {
  color: var(--color-primary);
}

/* CONTACT DETAILS --------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.map-embed {
  background: #F6F7F8;
  border-radius: 12px;
  padding: 12px 14px;
  color: #475554;
  font-size: 0.96rem;
}

/* FOOTER ------------------------ */
footer {
  background: #F5F8F7;
  padding: 38px 0 16px 0;
  border-top: 1px solid #EAEEED;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
footer a, footer nav a {
  color: var(--color-primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 12px;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
  align-items: flex-start;
}
footer nav a:hover, footer nav a:focus {
  text-decoration: underline;
  color: var(--color-accent);
}
footer address {
  font-style: normal;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #455652;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
footer address img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-copy {
  color: #909C99;
  font-size: 0.94rem;
  margin-top: 16px;
  flex: 1 0 100%;
}
footer img {
  height: 42px;
  margin-bottom: 12px;
}

/* THANKS ------------------------ */
.thank-you-section {
  background: #F9FDFD;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px #3ad10609;
  text-align: center;
  margin-top: 44px;
  padding: 60px 14px 54px 14px;
}
.thank-you-section h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
}
.thank-you-section a.cta {
  margin: 22px auto 0 auto;
}

/* LEGAL & TEXT PAGES ------------ */
.legal-section, .gdpr-section, .tos-section, .cookie-section {
  margin-bottom: 50px;
  padding: 44px 11px;
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}
.legal-section .text-section, .gdpr-section .text-section, .tos-section .text-section, .cookie-section .text-section {
  margin-top: 18px;
  font-size: 1rem;
  color: #303c35;
}
.legal-section ul, .gdpr-section ul, .tos-section ul, .cookie-section ul {margin-left: 22px; margin-bottom: 18px;}

/* COOKIE BANNER ------------------ */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 25000;
  background: #FFF;
  color: #212f29;
  box-shadow: 0 -2px 20px #bbc6be41;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 22px 32px 22px;
  gap: 22px;
  transition: transform 0.3s cubic-bezier(0.72,0.04,0.54,0.93), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
#cookie-banner .cookie-message {
  flex: 1 1 330px;
  font-size: 1rem;
  margin-right: 30px;
  font-family: Arial, sans-serif;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
#cookie-banner button, #cookie-banner .cookie-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.17s, color 0.13s;
}
#cookie-banner button.cookie-settings{
  background: #f3f6f5;
  color: var(--color-primary-dark);
}
#cookie-banner button.cookie-settings:hover{
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
#cookie-banner button:focus,
#cookie-banner button:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
#cookie-banner button.reject {
  background: #ededed;
  color: #455652;
}
#cookie-banner button.reject:hover {
  background: #ffc83055;
  color: #222;
}

/* COOKIE PREFERENCES MODAL ------- */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 26000;
  background: rgba(68,93,86,0.28);
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
  animation: fadeIn 0.25s;
}
#cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 32px #247b6d22;
  padding: 38px 25px 31px 25px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: transparent;
  border: none;
  color: var(--color-primary-dark);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
#cookie-modal .modal-close:focus, .modal-close:hover {
  color: var(--color-accent);
}
#cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}
#cookie-modal .cookie-categories{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7fbf8;
  border-radius: 9px;
  padding: 9px 14px;
}
.cookie-category label {
  font-weight: 500;
  font-family: Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
}
.cookie-category input[disabled] {
  opacity: 0.6;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
#cookie-modal .modal-actions button {
  font-size: 1.01rem;
  padding: 10px 22px;
  border-radius: 99px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE DESIGN ------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
  }
  .feature-grid, .testimonial-slider, .content-grid, .service-details {
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .section, footer .container, .card-container {
    gap: 18px;
  }
  .feature-grid, .testimonial-slider, .service-details {
    gap: 12px;
  }
  .service-card, .testimonial-card, .feature {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  .content-wrapper {
    gap: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 62px;
    padding: 0 12px;
  }
  .feature-grid, .testimonial-slider, .content-grid, .service-details {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    margin-bottom: 44px;
    padding: 30px 8px;
    gap: 11px;
  }
  .hero-section {
    padding: 36px 0 32px 0;
  }
  .hero-section .content-wrapper {max-width: 95vw;}
  .thank-you-section {
    padding: 40px 8px 36px 8px;
    margin-top: 22px;
  }
  .pricing-section, .compare-section {
    padding: 20px 8px;
    margin-bottom: 34px;
  }
  .about-section, .team-section, .values-section, .faq-section, .support-section,
  .contact-details-section, .hours-section, .legal-section, .gdpr-section, .tos-section, .cookie-section {
    padding: 18px 5px;
    margin-bottom: 18px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 4vw 20px 4vw;
  }
  #cookie-banner .cookie-message {
    margin-right: 0;
  }
  #cookie-modal .cookie-modal-content {
    min-width: unset;
    padding: 24px 7vw 19px 7vw;
    max-width: 96vw;
  }
}
@media (max-width: 500px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.45rem;}
  .hero-section h1 {font-size: 1.68rem;}
  .thank-you-section h1 {font-size: 1.40rem;}
  .footer-copy, footer address, footer nav a {font-size: 0.93rem;}
  .feature, .service-card, .testimonial-card {padding: 16px 7px 14px 7px;}
  .section {padding: 17px 2vw;}
}

/* ACCESSIBILITY ----------------- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS ------------ */
.card, .feature, .testimonial-card, .service-card {
  transition: box-shadow 0.19s, transform 0.13s, border 0.16s;
}
.card:hover, .feature:hover, .service-card:hover {
  box-shadow: 0 8px 28px #247b6d16;
  transform: translateY(-3px) scale(1.01);
  border-color: var(--color-accent);
}

/* Hide default outline for mouse users, show for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}

/* END OF STYLE.CSS */
