/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #F4F6F8  60%, #B1C348 100%);
  color: #284B63;
  min-height: 100vh;
  min-width: 320px;
  line-height: 1.6;
  font-size: 1rem;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #284B63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B1C348;
  outline: none;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #284B63;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

p {
  margin-bottom: 1em;
  font-size: 1.05rem;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.5em;
}

strong {
  font-family: inherit;
  font-weight: 700;
  color: #284B63;
}

blockquote {
  font-style: italic;
  margin: 0;
  color: #284B63;
  background: #F4F6F8;
  border-left: 4px solid #B1C348;
  padding: 12px 24px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #F4F6F8 85%, #B1C348 100%);
  box-shadow: 0 2px 12px 0 rgba(40,75,99,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 18px 14px 18px;
}
.logo img {
  height: 44px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  color: #284B63;
  padding: 7px 2px;
  border-radius: 4px;
  transition: color 0.18s, background 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B1C34822;
  color: #B1C348;
}
.cta.primary {
  background: linear-gradient(90deg, #284B63 70%, #B1C348 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  border: none;
  padding: 12px 26px;
  border-radius: 28px;
  font-weight: 700;
  margin-left: 18px;
  margin-right: 10px;
  box-shadow: 0 2px 8px 0 rgba(40,75,99,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.12s;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #B1C348 50%, #284B63 100%);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(177,195,72,0.18);
  transform: translateY(-2px) scale(1.03);
}
.cta {
  background: #284B63;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 25px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  cursor: pointer;
  margin-top: 12px;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #B1C348;
  color: #284B63;
  box-shadow: 0 2px 14px rgba(177,195,72,0.11);
  transform: translateY(-1px) scale(1.02);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #284B63;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #B1C348;
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F6F8;
  box-shadow: 0 6px 36px rgba(40,75,99,0.19);
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
  transform: translateX(-100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #284B63;
  padding: 18px 30px;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B1C348;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 44px 0 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.20rem;
  color: #284B63;
  font-weight: 500;
  padding: 10px 8px 10px 0;
  border-radius: 5px;
  line-height: 1.5;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B1C34822;
  color: #B1C348;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F4F6F8 70%, #B1C348 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  padding: 52px 0 46px 0;
  width: 100%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #284B63;
}
.hero p {
  font-size: 1.25rem;
  max-width: 590px;
  margin-bottom: 28px;
  color: #284B63;
}

/* FEATURES */
.features, .values {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 1px 8px rgba(40,75,99,0.05);
}
.features h2, .values h2 {
  margin-bottom: 22px;
}
.features ul, .values ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  justify-content: flex-start;
  align-items: flex-start;
}
.features li, .values li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.07rem;
  color: #284B63;
  background: #F4F6F8;
  border-radius: 15px;
  padding: 15px 18px;
  min-width: 220px;
  box-shadow: 0 0.5px 7px 0 rgba(40,75,99,0.06);
}
.features img, .values img {
  width: 36px;
  height: 36px;
  display: block;
}

/* SERVICES HIGHLIGHT/LIST */
.services-highlight, .services {
  background: #F4F6F8;
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services-highlight ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 24px;
}
.services-highlight li {
  background: #fff;
  color: #284B63;
  border-radius: 15px;
  padding: 13px 20px 13px 18px;
  min-width: 220px;
  font-size: 1.04rem;
  margin-bottom: 0;
  box-shadow: 0 1px 12px 0 rgba(40,75,99,0.07);
}
.services-highlight strong {
  color: #284B63;
  font-weight: 700;
}
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-block {
  background: #fff;
  flex: 1 1 235px;
  min-width: 240px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 28px 22px 26px 22px;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(40,75,99,0.07);
  transition: box-shadow 0.22s, transform 0.14s;
  gap: 14px;
}
.service-block img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.service-block h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.service-block p {
  font-size: 1rem;
  color: #284B63;
  flex: 1 1 auto;
}
.service-block strong {
  color: #B1C348;
  font-weight: 700;
}
.service-block:hover, .service-block:focus-within {
  box-shadow: 0 6px 30px 0 rgba(40,75,99,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* PROCESS SECTION */
.process {
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
}
.process h2 {
  margin-bottom: 20px;
}
.process ol {
  list-style: none;
  counter-reset: pocet;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 0;
}
.process li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F4F6F8;
  border-radius: 15px;
  padding: 15px 16px 15px 16px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 210px;
  position: relative;
  font-size: 1.05rem;
  color: #284B63;
  margin-bottom: 0;
}
.process li img {
  width: 32px;
  margin-top: 2px;
}


/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h1,
.testimonials h2 {
  text-align: left;
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  color: #284B63;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(40,75,99,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px 22px 14px 22px;
  min-width: 250px;
  max-width: 660px;
  transition: transform 0.12s, box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px 0 rgba(177,195,72,0.18);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card blockquote {
  background: none;
  border-left: 3px solid #B1C348;
  padding: 5px 0 5px 17px;
  color: #284B63;
  font-size: 1.07rem;
  line-height: 1.6;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  color: #284B63;
  letter-spacing: 0.02em;
  opacity: 0.78;
  font-weight: 500;
}

/* CTA SECTION */
.contact-cta, .services-cta {
  background: #B1C348;
  border-radius: 24px;
  color: #284B63;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(40,75,99,0.07);
}
.contact-cta h2, .services-cta h2 {
  color: #284B63;
  margin-bottom: 12px;
}
.contact-cta p, .services-cta p {
  color: #284B63;
  font-size: 1.13rem;
  margin-bottom: 18px;
}
.contact-cta .cta.primary,
.services-cta .cta.primary {
  background: linear-gradient(90deg, #284B63 70%, #B1C348 100%);
  color: #fff;
  margin-left: 0;
  margin-top: 14px;
}

/* CONTACT PAGE */
.contact {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 12px 0 rgba(40,75,99,0.065);
}
.contact h1 {
  margin-bottom: 17px;
}
.contact .text-section {
  margin-bottom: 18px;
  font-size: 1.06rem;
}
.contact .contact-teaser {
  background: #F4F6F8;
  border-radius: 16px;
  padding: 18px 16px;
  color: #284B63;
  font-size: 1rem;
}

/* ABOUT, VALUES & LEGAL/TEXT SECTIONS */
.about, .confirmation, .blog-intro {
  background: #fff;
  border-radius: 25px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 8px 0 rgba(40,75,99,0.05);
}
.text-section {
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.text-section ul {
  margin: 10px 0 20px 0;
  padding-left: 20px;
}

/* CASE STUDIES */
.case-studies {
  background: #F4F6F8;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.case-studies h2 {
  margin-bottom: 20px;
}
.case-studies .text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 8px;
}
.case-study {
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  color: #284B63;
  box-shadow: 0 1px 8px 0 rgba(40,75,99,0.05);
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 0;
}

/* BLOG POSTS */
.blog-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.blog-list li {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  color: #284B63;
  flex: 1 1 270px;
  min-width: 220px;
  box-shadow: 0 1px 8px 0 rgba(40,75,99,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.15s, transform 0.11s;
}
.blog-list li:hover {
  box-shadow: 0 6px 22px 0 rgba(177,195,72,0.11);
  transform: scale(1.018);
}
.blog-list strong {
  font-weight: 700;
  color: #284B63;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.blog-list .category {
  background: #F4F6F8;
  border-radius: 9px;
  color: #B1C348;
  font-size: 0.97rem;
  padding: 4px 11px;
  display: inline-block;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F4F6F8 90%, #B1C348 100%);
  padding: 32px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  border-radius: 35px 35px 0 0;
  box-shadow: 0 2px 18px 0 rgba(40,75,99,0.05);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #284B63;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B1C348;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  align-items: baseline;
  font-size: 1rem;
  opacity: 0.90;
  text-align: center;
}
.footer-brand {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 28px;
  width: auto;
  display: inline-block;
  margin-right: 4px;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #284B63;
  opacity: 0.76;
  font-size: 0.96rem;
}

/* LEGAL SECTION & CONFIRMATION PAGE */
.legal {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 8px 0 rgba(40,75,99,0.05);
}
.confirmation {
  background: #F4F6F8;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
  box-shadow: 0 1px 10px rgba(40,75,99,0.06);
  text-align: center;
}
.confirmation .cta.primary {
  margin: 22px 0 8px 0;
}

/* SPACING AND FLEX CONTAINERS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(40,75,99,0.05);
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX UTILS */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.gap-20 {
  gap: 20px;
}

/* ANIMATION & MICRO-INTERACTION */
button, .cta, .service-block, .testimonial-card, .blog-list li {
  transition: box-shadow 0.2s, background 0.18s, color 0.17s, transform 0.13s;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #d3dbe1;
  padding: 10px 13px;
  outline: none;
  transition: border 0.16s;
  margin-bottom: 11px;
}
input:focus, select:focus, textarea:focus {
  border-color: #B1C348;
}

/* OVERRIDES FOR SPACING */
main > section {
  margin-bottom: 60px;
}
main > section:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .header-content {
    gap: 14px;
  }
  .service-block,
  .case-study,
  .blog-list li,
  .features li,
  .values li,
  .process li{
    min-width: 140px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* Header */
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-content {
    gap: 9px;
    padding: 10px 9px;
  }
  .logo img {
    height: 36px;
  }
  /* Container tweaks */
  .container {
    padding: 0 10px;
  }

  /* Section paddings */
  .section, .features, .values, .services-highlight, .testimonials, .about, .contact, .confirmation, .legal, .case-studies, .contact-cta, .services-cta {
    padding: 22px 7px;
    border-radius: 12px;
  }
  .hero {
    border-radius: 0 0 16px 16px;
    padding: 30px 0 28px 0;
  }

  /* Features, cards, services layout */
  .features ul,
  .values ul,
  .services-highlight ul,
  .blog-list,
  .service-list,
  .content-grid,
  .case-studies .text-section,
  .process ol {
    flex-direction: column;
    gap: 16px;
  }
  .service-block, .case-study, .blog-list li, .features li, .values li, .process li {
    min-width: 0;
    max-width: 100%;
  }
  /* Testimonials */
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    font-size: 0.98rem;
    padding: 15px 10px 10px 12px;
  }

  /* Footer */
  footer {
    border-radius: 18px 18px 0 0;
    padding: 22px 0 12px 0;
    gap: 16px;
  }
  .footer-nav {
    gap: 9px 7px;
    font-size: 0.98rem;
  }
  .footer-contact {
    gap: 10px 12px;
    font-size: 0.97rem;
  }
  .footer-brand {
    margin-top: 13px;
    gap: 7px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.07rem;
    margin-bottom: 12px;
  }
  main > section {
    margin-bottom: 46px;
  }

  .testimonial-card,
  .case-study,
  .service-block,
  .process li,
  .blog-list li {
    font-size: 0.99rem;
    padding: 11px 6px 10px 7px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #284B63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 22px;
  z-index: 300;
  box-shadow: 0 -2px 16px rgba(40,75,99,0.13);
  font-size: 1rem;
  animation: fadeInCookie 0.7s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 auto;
  max-width: 670px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 22px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 rgba(40,75,99,0.07);
  transition: background 0.14s, color 0.14s, box-shadow 0.12s, transform 0.09s;
  outline: none;
}
.cookie-accept {
  background: #B1C348;
  color: #284B63;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #284B63;
}
.cookie-reject {
  background: #fff;
  color: #284B63;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #B1C348;
  color: #284B63;
}
.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #B1C348;
  color: #284B63;
  border-color: #B1C348;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 8px;
    gap: 15px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,75,99,0.55);
  justify-content: center;
  align-items: center;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInModal 0.35s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #284B63;
  border-radius: 16px;
  max-width: 440px;
  width: 92vw;
  box-shadow: 0 7px 28px 0 rgba(40,75,99,0.19);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popupModal 0.32s cubic-bezier(0.37,1.18,0.86,0.94);
}
@keyframes popupModal {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: #284B63;
  font-size: 1.2rem;
}
.cookie-categories {
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  color: #B1C348;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* HIDE ELEMENTS UTILS */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* END OF STYLE.CSS */
