/*========================================================================
  RESET & BASE STYLES
=========================================================================*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #142b3b;
  background: #F3F5F7;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #154B80;
  text-decoration: none;
  transition: color .2s cubic-bezier(.62,0,.51,1);
}
a:hover, a:focus {
  color: #27AAE1;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  padding-left: 0;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}

/*========================================================================
  BRAND TYPOGRAPHY — geometric, structured
=========================================================================*/
@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');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #154B80;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4,h5,h6 {
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.07rem; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(21, 75, 128, 0.06);
  position: relative;
}

/*========================================================================
  LAYOUT CONTAINERS (flexbox ONLY, structured)
=========================================================================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cards and blocks */
.card-container,
.card-grid,
.feature-grid,
.blog-teasers,
.service-list,
.case-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.feature,
.service-card,
.case-card,
.blog-post,
.faq-item {
  margin-bottom: 20px;
  position: relative;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F3F5F7;
  border: 2px solid #27AAE1;
  border-radius: 16px;
  padding: 32px 32px 28px 32px;
  margin-bottom: 20px;
  min-width: 0;
  box-shadow: 0 2px 14px rgba(21, 75, 128, 0.04);
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(21, 75, 128, 0.14);
}

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

/* Prevent overlap & enforce spacing between elements */
.card + .card,
.feature + .feature,
.service-card + .service-card,
.case-card + .case-card,
.blog-post + .blog-post,
.faq-item + .faq-item {
  margin-left: 0;
  margin-top: 0;
}

/*========================================================================
  NAVIGATION & HEADER
=========================================================================*/
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(21, 75, 128, 0.05);
  position: sticky;
  top: 0;
  z-index: 996;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 0 13px 0;
}
.main-nav img {
  height: 38px;
  margin-right: 18px;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #154B80;
  transition: background .2s, color .2s;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .03em;
  font-weight: 500;
}
.main-nav a.cta-btn {
  background: #154B80;
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 32px;
  margin-left: 20px;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px rgba(21, 75, 128, 0.08);
  transition: background .17s, box-shadow .2s;
  border: none;
  outline: none;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #27AAE1;
  color: #fff;
  box-shadow: 0 6px 24px rgba(21,75,128,.15);
}
.main-nav a:hover, .main-nav a:focus {
  background: #E8F4FB;
  color: #27AAE1;
}

/* Hide nav on mobile */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
}

/*========================================================================
  MOBILE BURGER MENU
=========================================================================*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #154B80;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 8px 11px 6px 13px;
  box-shadow: 0 2px 8px rgba(21,75,128,0.09);
  z-index: 998;
  cursor: pointer;
}
@media (max-width: 950px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #154B80;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.76,-0.14,.58,1);
  box-shadow: 12px 0 44px rgba(21,75,128,0.25);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  padding: 18px 18px 6px 12px;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 6px;
  margin-right: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 36px 24px;
  gap: 17px;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat',Arial,sans-serif;
  color: #fff;
  background: none;
  border-radius: 12px;
  padding: 16px 14px 11px 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 7px 0;
  transition: background .21s,color .21s;
  display: block;
}
.mobile-nav a:hover {
  background: #27AAE1;
  color: #fff;
}

@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}

/*========================================================================
  HERO
=========================================================================*/
.hero {
  background: linear-gradient(90deg,#F3F5F7 35%,#27AAE1 100%);
  border-radius: 0 0 56px 56px/0 0 40px 40px;
  box-shadow: 0 4px 28px 0 rgba(39,170,225,0.09);
  padding-top: 48px;
  padding-bottom: 42px;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #154B80;
  font-size: 2.5rem;
}
.hero p {
  color: #375067;
  max-width: 600px;
}
.hero .cta-btn {
  margin-top: 18px;
}
@media(max-width: 700px) {
  .hero {
    padding: 30px 0;
    border-radius: 0 0 32px 32px / 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
}

/*========================================================================
  STRUCTURED BUTTONS + CTA
=========================================================================*/
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #27AAE1;
  color: #fff;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 12px 32px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: .07em;
  border: none;
  box-shadow: 0 4px 18px rgba(21, 75, 128, 0.11);
  cursor: pointer;
  transition: background .16s, box-shadow .20s, color .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #154B80;
  color: #fff;
  box-shadow: 0 8px 26px rgba(21, 75, 128, 0.22);
  transform: translateY(-3px) scale(1.03);
}

/*========================================================================
  FEATURES GRID (angular/geometric)
=========================================================================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: #fff;
  border: 2.4px solid #27AAE1;
  border-radius: 18px;
  padding: 36px 26px 30px 26px;
  flex: 1 1 240px;
  transition: box-shadow .18s, border-color .18s;
  box-shadow: 0 1px 8px rgba(21,75,128,.03);
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 272px;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature h3 {
  color: #154B80;
  font-size: 1.13rem;
  margin-top: 9px;
}
.feature p {
  color: #354d69;
  font-size: 1rem;
  margin-top: 6px;
}
.feature:hover, .feature:focus {
  border-color: #154B80;
  box-shadow: 0 6px 28px rgba(39,170,225, .13);
}

/*========================================================================
  SERVICES (& SERVICE CARDS)
=========================================================================*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 18px;
}
.service-card {
  background: #fff;
  border: 2.2px solid #154B80;
  border-radius: 18px;
  min-width: 220px;
  max-width: 350px;
  padding: 32px 18px 24px 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(21,75,128,0.04);
  gap: 10px;
  transition: border-color .18s, box-shadow .18s;
}
.service-card:hover {
  border-color: #27AAE1;
  box-shadow: 0 8px 52px rgba(21,75,128,.13);
}
.service-card h3 {
  font-size: 1.14rem;
  color: #154B80;
  margin-bottom: 6px;
}
.service-card .price {
  color: #27AAE1;
  font-size: 1.04rem;
  /* Style as angular label */
  padding: 2px 16px 3px 18px;
  border-radius: 12px 4px 12px 4px/8px 2.5px 8px 2.5px;
  background: #E8F4FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 9px;
}

/*========================================================================
  BLOG LIST / BLOG POSTS / CASE CARDS
=========================================================================*/
.blog-list, .case-studies {
  padding: 25px 0;
}
.blog-teasers, .case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.blog-post, .case-card {
  background: #fff;
  border: 2.1px solid #27AAE1;
  border-radius: 13px;
  box-shadow: 0 1px 9px rgba(21,75,128,.05);
  padding: 29px 19px 19px 20px;
  flex: 1 1 270px;
  min-width: 218px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: border-color .14s, box-shadow .14s;
}
.blog-post:hover, .case-card:hover {
  border-color: #154B80;
  box-shadow: 0 6px 21px rgba(39,170,225, .10);
}
.blog-post h3, .case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.blog-post .post-meta {
  color: #154b80;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-top: 9px;
}

/*========================================================================
  FAQ
=========================================================================*/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.faq-item {
  background: #fff;
  border: 2px solid #E9EEF1;
  border-radius: 10px 20px 10px 20px/7px 21px 7px 21px;
  box-shadow: 0 2px 8px rgba(21, 75, 128, 0.06);
  padding: 26px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 420px;
  margin-bottom: 20px;
  transition: border-color .16s;
}
.faq-item h3 {
  color: #154B80;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.faq-item:hover {
  border-color: #27AAE1;
}

/*========================================================================
  TESTIMONIALS
=========================================================================*/
.testimonials {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 18px rgba(21,75,128,0.04);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  background: #F3F5F7;
  color: #142b3b;
  border: 2px solid #27AAE1;
  box-shadow: 0 6px 32px rgba(21, 75, 128, 0.09);
  border-radius: 18px;
  padding: 32px 22px 28px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.12rem;
  min-width: 0;
  max-width: 460px;
  transition: box-shadow .18s, border-color .16s;
}
.testimonials .stars {
  color: #27AAE1;
  font-size: 1.2em;
  letter-spacing: .1em;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card strong {
  color: #154B80;
  font-weight: 700;
}
.testimonial-card:hover {
  border-color: #154B80;
  box-shadow: 0 8px 42px rgba(39,170,225,0.18);
}

/* Ensure testimonial text on light backgrounds for contrast */
.testimonial-card p,
.testimonial-card span {
  color: #1B2735;
}

/*========================================================================
  FOOTER
=========================================================================*/
footer {
  background: #154B80;
  color: #fff;
  padding-top: 28px;
  padding-bottom: 18px;
  margin-top: 60px;
  border-radius: 32px 32px 0 0/24px 24px 0 0;
  box-shadow: 0 -6px 36px rgba(21, 75, 128,.14);
}
footer .container {
  padding: 0 10px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 14px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-contact {
  font-size: 1rem;
  line-height: 1.55;
  font-family: 'Roboto', Arial,sans-serif;
  color: #fff;
  margin-bottom: 10px;
  max-width: 240px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.footer-menu a {
  color: #27AAE1;
  background: transparent;
  border-radius: 8px;
  padding: 5px 8px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #27AAE1;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: brightness(1.15);
  background: #27AAE1;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(39,170,225, 0.12);
  transition: background .18s;
}
.footer-social a:hover img {
  background: #fff;
}
.footer-privacy {
  width: 100%;
  font-size: .95rem;
  margin-top: 4px;
  color: #BFE2F0;
}
.footer-privacy a {
  color: #BFE2F0;
  padding: 2px 5px;
  border-radius: 5px;
}
.footer-privacy a:hover, .footer-privacy a:focus {
  color: #fff;
  background: #27AAE1;
}

@media (max-width: 950px) {
  .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/*========================================================================
  CONTACT INFO BLOCK (kontakt)
=========================================================================*/
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin: 10px 0 18px 0;
}
.address, .email, .hours {
  background: #E8F4FB;
  color: #154B80;
  border-radius: 9px;
  padding: 18px 15px;
  font-size: 1.06rem;
  font-family: "Roboto", Arial, sans-serif;
}
.map-placeholder {
  margin-top: 14px;
  background: #F3F5F7;
  border: 1.4px dashed #27AAE1;
  border-radius: 13px;
  padding: 22px 14px;
  color: #154B80;
}

/*========================================================================
  COMPARISON TABLE (angular border)
=========================================================================*/
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 12px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(21,75,128,0.07);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 12px 20px;
  border-bottom: 1.5px solid #E9EEF1;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  color: #1B2735;
}
.comparison-table th {
  background: #E8F4FB;
  color: #154B80;
  font-weight: 700;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/*========================================================================
  PARTNER LOGOS
=========================================================================*/
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 18px 0 0 0;
  align-items: center;
}
.partner-logos img {
  height: 46px;
  background: #fff;
  border-radius: 9px;
  padding: 7px 12px;
  border: 1.5px solid #E9EEF1;
  box-shadow: 0 2px 12px rgba(39,170,225,.08);
}

/*========================================================================
  THANK-YOU
=========================================================================*/
.thank-you {
  background: #E8F4FB;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(21, 75, 128, 0.08);
  padding: 40px 20px;
  margin-bottom: 60px;
}

/*========================================================================
  LEGAL & STATIC PAGES
=========================================================================*/
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,75,128,0.04);
  padding: 40px 16px;
  margin-bottom: 40px;
}
.legal h1, .legal h2 {
  color: #154B80;
}

/*========================================================================
  RESPONSIVE MEDIA QUERIES — mobile first
=========================================================================*/
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-logo img {
    height: 32px;
  }
  .feature-grid,
  .service-list,
  .blog-teasers,
  .case-list,
  .faq-list {
    flex-direction: column;
    gap: 20px;
  }
  .card,
  .feature,
  .service-card,
  .case-card,
  .blog-post,
  .faq-item,
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .contact-info-block {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 24px 12px 18px 12px;
  }
  .partner-logos {
    gap: 14px;
  }
}

/*========================================================================
  ANIMATIONS & MICROINTERACTIONS
=========================================================================*/
.cta-btn, .main-nav a.cta-btn, .feature, .service-card, .testimonial-card, .footer-menu a, .blog-post, .case-card, .faq-item {
  transition: box-shadow .17s, border-color .16s, transform .17s, background .19s;
}
.cta-btn:active {
  transform: scale(0.98);
}

/*========================================================================
  COOKIE CONSENT BANNER & MODAL — geometric, high contrast
=========================================================================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1B2735;
  color: #fff;
  z-index: 2001;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 30px;
  box-shadow: 0 -4px 26px rgba(21, 75, 128, 0.2);
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-message {
  flex: 1 1 260px;
  font-size: 1.1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 11px;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px 4px 12px 4px/8px 2.5px 8px 2.5px;
  border: none;
  padding: 9px 22px;
  box-shadow: 0 2px 12px rgba(39,170,225,0.18);
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background .15s, color .13s;
}
.cookie-btns .accept {
  background: #27AAE1;
  color: #fff;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: #154B80;
}
.cookie-btns .reject {
  background: #fff;
  color: #154B80;
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #E8F4FB;
  color: #27AAE1;
}
.cookie-btns .settings {
  background: #154B80;
  color: #fff;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: #27AAE1;
  color: #fff;
}
@media(max-width:600px){
  .cookie-banner { flex-direction: column; padding: 18px 8px; gap: 10px; }
  .cookie-btns { gap: 7px; width: 100%; }
  .cookie-btns button { flex: 1; width: 100%; }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 2096;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21, 75, 128, 0.15);
  opacity: 1;
  display: none;
}
.cookie-modal-backdrop.open { display: block; }
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2100;
  transform: translate(-50%, -50%) scale(0.93);
  opacity: 0;
  min-width: 320px;
  width: 90vw;
  max-width: 420px;
  background: #fff;
  color: #154B80;
  border-radius: 15px 26px 15px 26px/11px 31px 11px 31px;
  box-shadow: 0 14px 48px rgba(21,75,128,0.25);
  padding: 30px 26px 26px 26px;
  pointer-events: none;
  transition: opacity .25s, transform .27s;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #E8F4FB;
  border-radius: 12px 4px 12px 4px/8px 2.5px 8px 2.5px;
  padding: 13px 13px 12px 15px;
  font-size: 1.01rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #27AAE1;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #154B80;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9px 23px 9px 23px / 7px 17px 7px 17px;
  border: none;
  padding: 9px 21px;
  background: #27AAE1;
  color: #fff;
  transition: background .17s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #fff;
  color: #154B80;
  border: 1.3px solid #27AAE1;
}
.cookie-modal .cookie-modal-actions button.secondary:hover {
  background: #E8F4FB;
  color: #27AAE1;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #154B80;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    width: 96vw;
    padding: 13px 5vw 17px 5vw;
  }
}

/*========================================================================
  ACCESSIBILITY — visible focus for keyboard navigation
=========================================================================*/
:focus-visible {
  outline: 2.5px solid #27AAE1 !important;
  outline-offset: 2px;
}

/*========================================================================
  UTILITIES
=========================================================================*/
.hide {
  display: none !important;
}
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }

/*========================================================================
  END OF STYLE.CSS
=========================================================================*/
