/* ==========================================================================
   CSS 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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F7FAFC;
  color: #243447;
  min-height: 100vh;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
}
main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
}
a {
  color: #243447;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #5EC6A6;
  outline-offset: 2px;
}

/* =============================================================================
   BRAND FONTS
   ('Oswald' for display, 'Lato' for body)
   =========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
p, li, ul, ol, blockquote {
  font-family: 'Lato', Arial, sans-serif;
  color: #425361;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #243447;
  font-weight: 700;
}

/*==============================================================================
   CONTAINER & SPACING SYSTEM
  ==============================================================================*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,52,71,0.05);
}
@media (max-width: 900px){
  .section, section{
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* Utility spacing classes */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.pt-24 { padding-top: 24px; }

/* =============================================================================
   HEADER AND NAVIGATION
   ============================================================================= */
header {
  background: #fff;
  box-shadow: 0 1px 7px rgba(36,52,71,0.04);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 32;
}
header .container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 18px 20px 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: #243447;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  padding: 2px 7px;
  border-radius: 4px;
  transition: background 0.13s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: #D7DFE7;
  color: #5EC6A6;
}
header img[alt*="Motors"] {
  height: 34px;
  margin-right: 10px;
}
header .btn-primary {
  margin-left: 18px;
}
/* Hide Burger and Mobile Menu by default on desktop */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

/* ==========================================================================
   BURGER MENU: MOBILE NAVIGATION
   ========================================================================= */
@media (max-width: 900px) {
  header .container nav,
  header .container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #243447;
    font-size: 2.1rem;
    padding: 10px 16px;
    margin-left: auto;
    border-radius: 7px;
    transition: background 0.12s;
    z-index: 100;
    cursor: pointer;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: #D7DFE7;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f8fbfd;
    box-shadow: 0 8px 32px rgba(36,52,71, 0.13);
    flex-direction: column;
    align-items: flex-start;
    padding: 46px 22px 28px 22px;
    z-index: 120;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.77,0,.175,1);
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #243447;
    font-size: 2.2rem;
    padding: 8px 11px;
    border-radius: 6px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background 0.13s;
  }
  .mobile-menu-close:focus,
  .mobile-menu-close:hover {
    background: #d7dfe7;
    color: #5EC6A6;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    padding: 10px 7px;
    border-radius: 6px;
    color: #243447;
    transition: background 0.14s, color 0.14s;
    margin-left: 5px;
  }
  .mobile-nav a:focus,
  .mobile-nav a:hover {
    background: #D7DFE7;
    color: #5EC6A6;
  }
}

/* ==========================================================================
   BUTTONS & CALL-TO-ACTION
   ========================================================================= */
.btn-primary {
  display: inline-block;
  background: #5EC6A6;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 12px 32px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 3px 14px rgba(94, 198, 166, 0.13);
  letter-spacing: .04em;
  transition: background 0.22s, box-shadow 0.23s, transform 0.13s;
  position: relative;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #243447;
  color: #fff;
  box-shadow: 0 6px 24px rgba(36,52,71,0.16);
  outline: none;
  transform: translateY(-2px) scale(1.025);
}

.btn-secondary {
  background: #D7DFE7;
  color: #243447;
  font-size: 1.02rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.14s, color 0.15s, box-shadow 0.16s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #5EC6A6;
  color: #fff;
  outline: none;
  box-shadow: 0 2px 12px rgba(94,198,166,0.11);
}

.btn-tertiary {
  background: #fff;
  color: #243447;
  border: 1px solid #5EC6A6;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.11s, color 0.12s, border 0.13s;
}
.btn-tertiary:hover,
.btn-tertiary:focus {
  background: #5EC6A6;
  color: #fff;
  border-color: #243447;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
  background: #EFF3F6;
  padding: 58px 0 38px 0;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 18px rgba(36,52,71,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.hero h1 {
  color: #243447;
}
.hero p {
  font-size: 1.18rem;
  color: #425361;
  margin-bottom: 6px;
}

/* =============================================================================
   FLEXBOX PATTERNS AND CONTENT CARDS
   ============================================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,52,71,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 18px;
  min-width: 250px;
  flex: 1 0 260px;
}

.content-grid, .feature-grid, .insurance-plans-grid, .service-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div, .insurance-plans-grid > div, .service-descriptions > div {
  background: #F7FAFC;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(36,52,71,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 18px 22px;
  gap: 11px;
  flex: 1 1 245px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 24px;
  transition: box-shadow 0.17s, border 0.14s;
  border: 1.5px solid #EFF3F6;
}
.feature-grid > div:hover, .insurance-plans-grid > div:hover, .service-descriptions > div:hover {
  box-shadow: 0 8px 24px rgba(94,198,166,0.10);
  border: 1.5px solid #5EC6A6;
}
.feature-grid img, .service-descriptions img {
  height: 38px;
  margin-bottom: 7px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid, .feature-grid, .insurance-plans-grid, .service-descriptions {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .insurance-plans-grid > div, .service-descriptions > div {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 15px;
  }
}

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

.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 27px 16px 27px;
  background: #EFF3F6;
  border-radius: 13px;
  min-width: 260px;
  max-width: 370px;
  box-shadow: 0 0px 16px rgba(36,52,71,0.09);
  margin-bottom: 15px;
  border-left: 4px solid #5EC6A6;
  color: #243447;
  transition: box-shadow 0.17s, border 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px #5ec6a629;
  border-left: 4px solid #243447;
}
.testimonial-card p {
  color: #243447;
  font-size: 1.11rem;
  font-style: italic;
}
.stars {
  display: flex;
  gap: 3px;
}
.testimonial-meta {
  font-size: .96rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #425361;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

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

/* =============================================================================
   LISTS, TABLES, FAQ ACCORDIONS, BANNERS
   ============================================================================= */
ol, ul {
  margin-left: 18px;
  margin-bottom: 16px;
  padding-left: 18px;
}
li {
  margin-bottom: 10px;
  color: #425361;
}
ol.step-by-step-list, .tips-list, .inspection_points_list, .value-statements {
  list-style: disc inside;
  margin-left: 0;
  margin-bottom: 18px;
  padding-left: 0;
  max-width: 640px;
}
.inspection_points_list li { font-size: 1.05rem; }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #F7FAFC;
  border-radius: 10px;
  padding: 18px 19px;
  box-shadow: 0 1px 6px rgba(36,52,71,0.06);
  transition: box-shadow 0.13s, border 0.13s;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 16px rgba(94,198,166,0.08);
}
.faq-accordion h3 {
  font-size: 1.18rem;
  color: #243447;
  margin-bottom: 7px;
}
.faq-accordion p {
  color: #425361;
  font-size: 1rem;
}

.tip-banner {
  background: #D7DFE7;
  color: #243447;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  padding: 12px 17px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(36,52,71,0.07);
}
.tip-banner img { height: 23px; }

.faq-snippet {
  background: #EFF3F6;
  border-radius: 8px;
  padding: 14px 15px;
  font-size: 1.04rem;
  margin-top: 23px;
  color: #243447;
}

.financing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 10px #d7dfe73b;
  font-size: 1rem;
}
.financing-table th, .financing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #D7DFE7;
}
.financing-table th {
  background: #EFF3F6;
  color: #243447;
  font-weight: bold;
  font-size: 1.05rem;
}
.financing-table td {
  color: #425361;
}
.financing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px){
  .financing-table, .financing-table thead, .financing-table tbody, .financing-table tr, .financing-table th, .financing-table td{
    display: block;
    width: 100%;
  }
  .financing-table th {
    border-top: 1px solid #D7DFE7;
  }
  .financing-table td {
    padding: 12px 3px;
    border-bottom: none;
  }
  .financing-table tr { margin-bottom: 10px; }
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 23px;
}

/* =============================================================================
   CALL TO ACTION (CTA)
   ============================================================================= */
.call-to-action {
  background: #5EC6A6 linear-gradient(90deg, #5EC6A6 82%, #D7DFE7 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 22px #5ec6a636;
  padding: 40px 23px;
  margin-bottom: 32px;
  text-align: left;
}
.call-to-action h2, .call-to-action p {
  color: #fff;
}
.call-to-action .btn-primary {
  background: #fff;
  color: #243447;
}
.call-to-action .btn-primary:hover, .call-to-action .btn-primary:focus {
  background: #243447;
  color: #fff;
}
@media (max-width: 600px) {
  .call-to-action { padding: 24px 8px; }
}

/* =============================================================================
   FOOTER
   ============================================================================= */
footer {
  background: #fff;
  border-top: 1.5px solid #D7DFE7;
  padding: 34px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
footer nav a {
  color: #425361;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 4px;
  transition: background 0.1s, color 0.13s;
}
footer nav a:hover {
  background: #EFF3F6;
  color: #243447;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  font-size: .98rem;
  color: #425361;
}
.footer-contact img {
  height: 16px;
  margin-right: 2px;
  vertical-align: middle;
}
.footer-meta {
  color: #b0b8be;
  font-size: .97rem;
  margin-top: 8px;
  font-family: 'Lato', Arial, sans-serif;
}
@media (max-width: 768px){
  footer .container {
    align-items: flex-start;
    gap: 13px;
  }
  footer nav { gap: 13px; }
}
@media (max-width: 480px){
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
}

/* =============================================================================
   SPECIAL SECTIONS (ABOUT, CONFIRMATION, LEGAL, ETC)
   ============================================================================= */
.brand-story, .mission-statement, .team-overview {
  margin-bottom: 22px;
}
.contact-info, .contact-summary .contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #425361;
  font-size: 1rem;
}
.contact-info img {
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.contact-form-disabled {
  background: #eff3f6;
  border-left: 3px solid #5EC6A6;
  color: #425361;
  padding: 14px 15px;
  border-radius: 7px;
}
.next-steps,
.values .trust-indicators {
  margin-top: 22px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.next-steps ul {
  margin-left: 22px;
}
.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .98rem;
}
.trust-indicators img {
  height: 22px;
}
.legal ul {
  margin-bottom: 25px;
}
.confirmation {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 16px #5ec6a629;
  margin-top: 35px;
  padding: 38px 20px;
}
.confirmation h1 {
  color: #5EC6A6;
  margin-bottom: 21px;
}
.confirmation .btn-primary {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .confirmation { padding: 20px 7px; }
}

/* =============================================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================================= */
@media (max-width: 1280px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width:600px){
  main {
    gap: 18px;
  }
  section, .section {
    padding: 16px 3px;
    margin-bottom: 18px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.03rem; }
}

/* =============================================================================
   COOKIE CONSENT BANNER
   ============================================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #243447;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 18px 19px 18px;
  z-index: 200;
  box-shadow: 0 -4px 32px rgba(36,52,71,0.13);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.01rem;
  animation: slideupFadeIn 0.44s cubic-bezier(.77,0,.175,1);
}
.cookie-consent-banner p {
  color: #fff;
  margin-bottom: 0;
  max-width: 370px;
  font-size: 1.07rem;
}
.cookie-consent-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner .btn-primary {
  background: #5EC6A6;
  color: #fff;
  font-size: 1rem;
  padding: 7px 18px;
}
.cookie-consent-banner .btn-primary:hover,
.cookie-consent-banner .btn-primary:focus {
  background: #EFF3F6;
  color: #243447;
}
.cookie-consent-banner .btn-secondary {
  background: #D7DFE7;
  color: #243447;
  padding: 7px 17px;
  font-size: 1rem;
}
.cookie-consent-banner .btn-secondary:hover,
.cookie-consent-banner .btn-secondary:focus {
  background: #5EC6A6;
  color: #fff;
}
.cookie-consent-banner .btn-tertiary {
  border: 1px solid #5EC6A6;
  color: #5EC6A6;
  padding: 6px 16px;
  font-size: 1rem;
}
.cookie-consent-banner .btn-tertiary:hover,
.cookie-consent-banner .btn-tertiary:focus {
  background: #5EC6A6;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 16px 7px 14px 9px;
    font-size: .99rem;
  }
}
@media (max-width: 480px){
  .cookie-consent-banner p { max-width: 98vw; }
}

@keyframes slideupFadeIn {
  from { opacity: 0; transform: translateY(68px); }
  to { opacity: 1; transform: none; }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,52,71,0.24);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.77,0,.175,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  width: 94vw;
  max-width: 410px;
  padding: 36px 23px 28px 23px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(36,52,71,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn 0.36s cubic-bezier(.77,0,.175,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.90); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #243447;
  font-size: 2.1rem;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 12px;
  transition: background 0.13s;
  margin-left: 10px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #D7DFE7;
  color: #5EC6A6;
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.04rem;
  margin-bottom: 15px;
}
.cookie-settings-list label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle-switch {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #D7DFE7;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle-switch:checked {
  background: #5EC6A6;
}
.cookie-toggle-switch:disabled {
  background: #bfc9d4;
  cursor: not-allowed;
}
.cookie-toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.19s;
}
.cookie-toggle-switch:checked::before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 6px;
}
.cookie-modal-actions .btn-primary {
  padding: 8px 17px;
  background: #5EC6A6;
  color: #fff;
  font-size: 1rem;
}
.cookie-modal-actions .btn-primary:hover {
  background: #243447;
}
.cookie-modal-actions .btn-secondary {
  background: #D7DFE7;
  color: #243447;
  font-size: 1rem;
  padding: 8px 17px;
}
.cookie-modal-actions .btn-secondary:hover {
  background: #5EC6A6;
  color: #fff;
}

/* =============================================================================
   SCANDINAVIAN_CLEAN: ADDITIONAL VISUAL REFINEMENTS
   ============================================================================= */
section, .section {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 14px 2px rgba(36,52,71,0.06);
}
@media (max-width:480px){
  section, .section { border-radius: 10px; }
}

::-webkit-scrollbar {
  width: 9px;
  background: #EFF3F6;
}
::-webkit-scrollbar-thumb {
  background: #d7dfe7;
  border-radius: 6px;
}

/* =============================================================================
   MICRO-INTERACTIONS (SUBTLE EFFECTS/HOVERS)
   ============================================================================= */
section a {
  transition: color 0.13s, border-bottom 0.12s;
}
section a:hover {
  color: #5EC6A6;
  border-bottom: 1px solid #5EC6A6;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* =============================================================================
   END STYLES
   ============================================================================= */
