/* CSS RESET AND 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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5; 
  background: #232730;
  color: #F5F8FA;
}
ol,ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[hidden] { display: none; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #22262D; /* Dark steel background */
  color: #F5F8FA;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #F5F8FA;
}
h1 { font-size: 2.5rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 28px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }

p, ul, ol, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #ced6df;
  margin-bottom: 0.6em;
}
strong {
  color: #F5F8FA;
}

.subheadline {
  font-size: 1.25rem;
  color: #88A1BA;
  margin-bottom: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* CONTAINER & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* SPACING AND SECTION 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: 10px;
  background: #292C32;
  box-shadow: 0 2px 12px rgba(30,37,44,0.12);
  border: 1px solid #313743;
}
.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;
  border-radius: 10px;
  background: #F5F8FA;
  color: #212531;
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(20,24,34,0.09);
  border: 1px solid #E1E4E8;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 22px rgba(80,120,170,0.15);
  transform: translateY(-2px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232730;
  padding: 28px 23px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(28,33,39,0.10);
  border: 1px solid #343843;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(41,64,102,0.18);
  border-color: #59A596;
}

/* FLEX LAYOUTS FOR SPECIFIC USE-CASES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.trust-elements {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.certifications {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* BUTTONS & LINKS */
.btn-primary, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  background: linear-gradient(91deg, #294066 60%, #202834 100%);
  color: #fff;
  border: none;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 18px rgba(41,64,102,0.13);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-primary:hover,
.cta-button:hover {
  background: linear-gradient(91deg, #59A596 60%, #347168 100%);
  color: #232730;
  box-shadow: 0 7px 28px rgba(33,80,96,0.19);
  transform: translateY(-1px) scale(1.009);
}
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #F5F8FA;
  color: #294066;
  border: 1px solid #59A596;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-button-secondary:hover {
  background: #59A596;
  color: #F5F8FA;
  transform: translateY(-1px) scale(1.012);
}

.main-nav a, .footer-nav a {
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 22px;
  padding: 8px 0;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.main-nav a:hover, .footer-nav a:hover {
  color: #59A596;
}
.main-nav .btn-primary {
  margin-left: 18px;
  margin-right: 0;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #20232a;
  box-shadow: 0 2px 16px rgba(25,29,38,0.08);
  z-index: 50;
  padding: 0;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
  flex-direction: row;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #F5F8FA;
  cursor: pointer;
  z-index: 111;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #59A596;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #22262D;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.73,-0.01,.23,.99);
  z-index: 1300;
  padding: 40px 26px 30px 26px;
  box-shadow: 2px 0 32px 0 rgba(20,25,32,0.25);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #88A1BA;
  margin-bottom: 30px;
  cursor: pointer;
  z-index: 1301;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #59A596;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 16px 0;
  color: #F5F8FA;
  border-bottom: 1px solid #313743;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #59A596;
}
.mobile-nav .btn-primary {
  margin-top: 20px;
  margin-left: 0;
}

/* HERO */
.hero {
  background: #232730;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 60px;
  border-bottom: 1.5px solid #313743;
}
.hero h1 {
  color: #F5F8FA;
  margin-bottom: 14px;
}
.hero .subheadline {
  max-width: 540px;
  color: #D7E0EB;
}

/* FEATURES */
.features {
  background: #232730;
  border-bottom: 1.5px solid #313743;
}
.features .feature-item img {
  width: 40px;
  height: 40px;
  filter: grayscale(30%) brightness(1.15);
}
.features .feature-item h3 {
  color: #59A596;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.features .feature-item p {
  color: #D7E0EB;
  font-size: 0.99rem;
}

/* TRUST SECTION */
.trust {
  background: #22262D;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.trust h2 {
  color: #F5F8FA;
}
.client-logos img,
.certifications img {
  height: 38px;
  margin-right: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #F5F8FA;
  color: #232730;
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonials h2 {
  color: #232730;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card blockquote {
  font-size: 1.07rem;
  color: #232730;
  font-style: italic;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card footer {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #294066;
  letter-spacing: 0.01em;
  text-align: right;
  font-weight: 500;
}
.rating {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}
.rating img {
  width: 20px;
  height: 20px;
}

/* PROCESS TEASER */
.process-teaser {
  background: #22262D;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  flex-direction: row;
  gap: 38px;
  align-items: center;
  margin-bottom: 22px;
}
.process-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F5F8FA;
  gap: 11px;
}
.process-steps .step img {
  height: 40px;
  margin-bottom: 3px;
}
.process-steps .step span {
  font-size: 1.04rem;
  font-weight: 600;
  color: #59A596;
  letter-spacing: 0.01em;
}

.cta-banner {
  background: #292C32;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 60px;
  border-radius: 10px;
}
.cta-banner h2 { color: #F5F8FA; }
.cta-banner p { color: #D0D5DB; }

/* SERVICE LIST */
.service-list .services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list .services li {
  background: #232730;
  border-radius: 10px;
  padding: 30px 22px;
  box-shadow: 0 2px 14px rgba(28,33,36,0.10);
  border: 1px solid #343843;
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.service-list .services li:hover {
  border-color: #59A596;
  box-shadow: 0 6px 24px rgba(89,165,150,0.13);
}
.service-list .services li img {
  width: 42px; height: 42px;
}
.service-list .services li h3 {
  font-size: 1.18rem;
  color: #59A596;
  margin-bottom: 7px;
}
/* NUMBERS & EXPERIENCE */
.numbers-experience {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 25px;
}
.numbers-experience div {
  font-size: 1.15rem;
  color: #F5F8FA;
  background: #292C32;
  padding: 17px 23px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  min-width: 180px;
  border: 1px solid #343843;
  box-shadow: 0 1px 8px rgba(30,37,44,0.08);
}
.numbers-experience strong {
  color: #59A596;
  font-size: 1.3rem;
}

/* ABOUT PAGE */
.core-values-list {
  margin: 16px 0 0 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-direction: column;
}
.core-values-list li {
  background: #292C32;
  color: #B5BFCF;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 18px;
  border-radius: 8px;
  border-left: 5px solid #59A596;
  margin: 0;
  font-size: 1rem;
}

/* TIMELINE / PROCESS */
.timeline .process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}
.timeline .process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #22262D;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(41,64,102,0.09);
  border-left: 5px solid #59A596;
  padding: 25px 22px 25px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #d5dbe3;
  position: relative;
  margin-bottom: 0;
}
.timeline .process-steps img {
  width: 40px; height: 40px;
}
.timeline .process-steps strong {
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.faq-item {
  background: #232730;
  padding: 24px 21px;
  border-radius: 10px;
  border: 1px solid #343843;
  box-shadow: 0 2px 8px rgba(30,37,44,0.07);
  transition: border-color 0.17s, box-shadow 0.17s;
}
.faq-item h3 {
  color: #59A596;
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item .faq-answer {
  color: #CDE3DD;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.faq-item:hover {
  border-color: #59A596;
  box-shadow: 0 3px 14px rgba(41,64,102,0.13);
}

.legal-content {
  background: #232730;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 400px;
  color: #F5F8FA;
}
.legal-content h1, .legal-content h2 {
  color: #F5F8FA;
}
.legal-content ul {
  margin-left: 18px;
}
.legal-content li {
  padding-left: 0;
  margin-bottom: 8px;
  color: #CDE3DD;
}
.legal-content a {
  color: #59A596;
  text-decoration: underline;
}

/* CONTACT PAGE */
.contact-infos .contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-infos .info-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F5F8FA;
}
.map-section {
  background: #232730;
  padding-top: 38px;
  padding-bottom: 38px;
  border-radius: 10px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #292C32;
  border: 1px solid #313743;
  border-radius: 8px;
  padding: 24px 22px;
}
.map-placeholder img {
  width: 54px; height: 54px;
}
.map-placeholder span {
  color: #b3c4db;
  font-size: 1rem;
}

/* FOOTER */
footer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #181B1F;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.99rem;
  color: #cde3dd;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img {
  width: 20px; height: 20px;
  filter: grayscale(40%) brightness(1.3);
}

/* THANK YOU SECTION */
.thank-you-section {
  background: #22262D;
  border-radius: 10px;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 14px; 
    padding-right: 14px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .process-steps {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .feature-grid, .service-list .services, .numbers-experience {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-list .services li, .numbers-experience div {
    min-width: unset;
    width: 100%;
  }
  .trust-elements, .client-logos {
    flex-wrap: wrap;
    gap: 18px;
  }
  .process-steps {
     flex-direction: column;
     gap: 18px;
   }
  .map-placeholder {
     flex-direction: column;
     align-items: flex-start;
     gap: 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px; padding-right: 8px;
  }
  header .container {
    gap: 10px;
    height: 60px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 10px;
  }
  .feature-grid,
  .testimonial-slider,
  .numbers-experience {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .trust-elements {
    flex-direction: column;
    gap: 18px;
  }
  .process-steps {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .map-placeholder {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.06rem; }
  .hero { padding: 28px 0 28px 0; }
  .container { padding-left: 3px; padding-right: 3px; }
  .section { padding: 20px 2px; margin-bottom: 32px; }
  .cta-button, .btn-primary, .cta-button-secondary {
    padding: 11px 20px;
    font-size: 1.00rem;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
a, button, .cta-button, .btn-primary, .service-list .services li, .feature-item, .testimonial-card {
  transition: color 0.17s, background 0.19s, box-shadow 0.22s, transform 0.17s;
}

.testimonial-card:focus-within, .service-list .services li:focus-within, .feature-item:focus-within, .faq-item:focus-within {
  outline: 2px solid #59A596;
  outline-offset: 0.5px;
}

/* ==================
   COOKIE CONSENT BAR
====================*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #232730;
  color: #F5F8FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 22px 26px 22px 22px;
  box-shadow: 0 -2px 28px rgba(20,29,38,0.23);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.36s cubic-bezier(.75,-0.13,.25,1.05), opacity 0.32s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-text {
  flex: 1 1 250px;
  color: #d0d5db;
}
.cookie-consent-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-btn {
  background: #294066;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 25px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.2s, color 0.18s;
}
.cookie-consent-btn:focus,
.cookie-consent-btn:hover {
  background: #59A596;
  color: #212531;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,39,48,0.70);
  z-index: 2025;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn .23s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232730;
  color: #F5F8FA;
  border-radius: 14px;
  padding: 30px 32px 28px 32px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 5px 42px rgba(41,64,102,0.22);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  animation: slideInModal 0.39s cubic-bezier(.7,.2,.25,1);
}
@keyframes slideInModal {
  from { transform: translateY(45px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal-header h2 {
  font-size: 1.22rem;
  color: #F5F8FA;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #cde3dd;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  margin-left: 18px;
}
.cookie-modal-close:hover {
  color: #59A596;
}
.cookie-modal-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #343843;
  border-radius: 18px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-slider {
  position: absolute;
  top: 2.5px; left: 2.5px;
  height: 19px; width: 19px;
  background: #b3c4db;
  border-radius: 50%;
  transition: transform 0.21s, background 0.15s;
}
.cookie-toggle input[type=checkbox]:checked+.cookie-slider {
  transform: translateX(20px);
  background: #59A596;
}
.cookie-toggle[disabled], 
.cookie-toggle input:disabled + .cookie-slider {
  background: #232730;
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  align-self: flex-end;
}
.cookie-modal-actions .cookie-consent-btn {
  padding: 8px 19px;
}

@media (max-width: 560px) {
  .cookie-modal {
    padding: 14px 8px 18px 8px;
    min-width: unset;
  }
  .cookie-modal-header h2 {
    font-size: 1.1rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 11px 8px 15px 8px;
  }
  .cookie-consent-text {
    font-size: 0.98em;
  }
}

/* END OF CSS */
