/* =========================
   RESET & BASE STYLES
   ========================= */
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #25405A;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #315375;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA800;
  outline: none;
}
:focus {
  outline: 2px solid #FFA800;
  outline-offset: 1px;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.2em;
}
ul li, ol li {
  margin-bottom: 0.4em;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  border-bottom: 1px solid #E9E9ED;
  margin: 32px 0;
}
/* ============
   TYPOGRAPHY
==============*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #25405A;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.25;
}
h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
p, .subheadline {
  font-size: 1rem;
  margin-bottom: 1.25em;
  color: #315375;
}
.subheadline {
  font-size: 1.1rem;
  color: #25405A;
  margin-bottom: 2em;
  font-weight: 400;
}
/* Lists */
ul, ol {
  font-size: 1rem;
  color: #294c6c;
}
li {
  padding-left: 2px;
}
/* ============
  LAYOUT CONTAINERS
==============*/
.container {
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* Sections / Cards / Flexible Content */
.section,
.hero,
.features,
.services,
.testimonials,
.cta-block,
.listing,
.comparison,
.guides,
.info-steps,
.pricing,
.about,
.values,
.statistics,
.contact,
.company-info,
.legal,
.confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(49,83,117,0.04);
}
@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .services,
  .testimonials,
  .cta-block,
  .listing,
  .comparison,
  .guides,
  .info-steps,
  .pricing,
  .about,
  .values,
  .statistics,
  .contact,
  .company-info,
  .legal,
  .confirmation {
    padding: 22px 8px;
    margin-bottom: 32px;
    border-radius: 9px;
  }
}

/* Generic Flex Containers (MANDATORY FLEXBOX ONLY) */
.card-container, .review-cards, .guide-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(49,83,117,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 210px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* =============
   HEADER & NAV
 ===============*/
header {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(49,83,117,0.07);
  padding: 0 0 0 0;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  margin-left: 22px;
  margin-right: 24px;
  height: 45px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 10px;
  color: #25405A;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E9E9ED;
  color: #FFA800;
}
.cta-btn {
  background: #FFA800;
  color: #25405A;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(49,83,117,0.06);
  margin-left: 24px;
  margin-right: 12px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  text-align: center;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #25405A;
  color: #FFA800;
  box-shadow: 0 5px 20px rgba(49,83,117,0.11);
}
.cta-btn.secondary {
  background: #315375;
  color: #fff;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #FFA800;
  color: #25405A;
}
/* Mobile nav button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #25405A;
  margin-left: 20px;
  cursor: pointer;
  z-index: 50;
  align-items: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E9E9ED;
  color: #FFA800;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 220;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.5,1.6,.5,1);
  box-shadow: 0 2px 24px rgba(49,83,117,0.10);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #25405A;
  margin: 18px 24px 0 0;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  border-radius: 6px;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9E9ED;
  color: #FFA800;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 36px 36px 36px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #315375;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid #E9E9ED;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9E9ED;
  color: #FFA800;
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 980px) {
  header {
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
    padding-bottom: 0;
  }
  .main-nav {
    gap: 8px;
  }
  .logo {
    margin-left: 10px;
    height: 38px;
  }
  .cta-btn {
    margin-left: 7px;
    padding: 9px 19px;
    font-size: 0.97rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 540px) {
  header {
    height: 56px;
    padding: 0;
  }
  .logo img {
    height: 34px;
    width: auto;
  }
  .cta-btn {
    padding: 8px 10px;
    font-size: 0.94rem;
  }
  .mobile-menu-close {
    font-size: 1.8rem;
    margin: 10px 16px 0 0;
  }
  .mobile-nav {
    padding: 8px 16px 24px 16px;
    font-size: 1rem;
  }
}

/* ===============
   HERO/HEADERS
  ================*/
.hero {
  display: flex;
  align-items: center;
  border-radius: 18px;
  background: #E9E9ED;
  box-shadow: 0 3px 24px 0 rgba(49,83,117,0.09);
  min-height: 240px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width:700px;
}
.hero h1 {
  color: #25405A;
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 900px) {
  .hero {
    min-height: unset;
    padding: 24px 10px;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
}

/* ================
  FEATURES & SERVICES
 ===================*/
.features .feature-grid,
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.services .service-list {
  gap: 28px;
}
.features .feature-grid li,
.services .service-list li {
  background: #fff;
  border: 1px solid #E9E9ED;
  border-radius: 12px;
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 7px rgba(49,83,117,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.features .feature-grid li:hover, .services .service-list li:hover {
  box-shadow: 0 5px 20px rgba(49,83,117,0.12);
}
.features .feature-grid img {
  width: 40px;
  height: 40px;
}
.services .service-list .service-price {
  color: #FFA800;
  background: #FFF7E5;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.97rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .features .feature-grid, .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================
   TESTIMONIALS
   ================*/
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #E9E9ED;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(49,83,117,0.07);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 170px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.15s;
}
.testimonial-card p {
  color: #315375;
  font-size: 1.04rem;
}
.testimonial-card .testimonial-author {
  color: #25405A;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 6px;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: #FFA800;
  box-shadow: 0 6px 30px rgba(49,83,117,0.12);
}
.highlighted-review {
  background: #FFF7E5;
  border-left: 5px solid #FFA800;
  padding: 18px 26px;
  border-radius: 10px;
  margin-bottom: 12px;
  margin-top: 10px;
  font-size: 1.05rem;
  color: #25405A;
}
.highlighted-review strong {
  color: #315375;
  font-weight: 700;
}

/* ================
   CTA BLOCK
   ================*/
.cta-block {
  background: #315375;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 22px rgba(49,83,117,0.10);
  padding: 44px 20px;
  margin-bottom: 34px;
}
.cta-block h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-block p {
  color: #E9E9ED;
}
.cta-block .cta-btn {
  background: #FFA800;
  color: #25405A;
  margin-top: 16px;
}
.cta-block .cta-btn:hover {
  background: #fff;
  color: #FFA800;
}

/* ================
  LISTING/REVIEWS
 ================*/
.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 32px 0;
}
.review-card {
  background: #fff;
  border: 1px solid #E9E9ED;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(49,83,117,0.06);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 170px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.12s, border 0.12s;
}
.review-card h3 {
  margin-bottom: 8px;
}
.review-card .review-score {
  color: #FFA800;
  font-weight: 600;
}
.review-card:hover, .review-card:focus {
  border-color: #FFA800;
  box-shadow: 0 4px 20px rgba(49,83,117,0.13);
}
.review-highlights, .comparison-highlights, .service-benefits {
  margin-top: 14px;
  padding: 15px 20px;
  background: #E9E9ED;
  border-radius: 9px;
  color: #25405A;
  font-size: 1rem;
}
.review-filter, .category-filters, .guide-categories {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
  flex-wrap: wrap;
}
.review-filter strong, .category-filters strong, .guide-categories strong {
  font-size: 1rem;
}
.review-filter ul, .category-filters ul, .guide-categories ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.review-filter ul li, .category-filters ul li, .guide-categories ul li {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #E9E9ED;
  color: #315375;
  padding: 4px 14px;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.review-filter ul li:hover, .category-filters ul li:hover, .guide-categories ul li:hover {
  background: #E9E9ED;
  color: #FFA800;
}

/* ================
 COMPARISON TABLES
===================*/
.comparison-table table, .pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 28px;
}
.comparison-table th, .comparison-table td, .pricing-table th, .pricing-table td {
  border-bottom: 1px solid #E9E9ED;
  padding: 11px 13px;
  text-align: left;
}
.comparison-table thead {
  background: #f9f9fb;
}
.comparison-table th {
  color: #25405A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.comparison-table td {
  font-family: 'Roboto', Arial, sans-serif;
}
.comparison-table tr:last-child td, .pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table th {
  background: #E9E9ED;
  color: #25405A;
  font-weight: 600;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #315375;
}

/* ================
      FAQ
===================*/
.faq-accordion {
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(49,83,117,0.06);
  padding: 14px 20px;
  margin-bottom: 16px;
  border: 1px solid #E9E9ED;
}
.faq-item strong {
  display: block;
  color: #25405A;
  margin-bottom: 4px;
  font-weight: 600;
}
.faq-item p {
  margin-bottom: 0;
}

/* ================
   ABOUT, VALUES, STATISTICS
===================*/
.values .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  align-items: flex-start;
}
.value-icon {
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-desc {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.statistics .numbers-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 20px 0;
  list-style: none;
  padding: 0;
}
.statistics .numbers-highlight li {
  background: #fff;
  border-radius: 12px;
  padding: 18px 26px;
  box-shadow: 0 2px 6px rgba(49,83,117,0.06);
  font-size: 1.15rem;
  color: #25405A;
}
.statistics .stat-number {
  display: block;
  color: #FFA800;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.achievement-badges {
  display: flex;
  gap: 16px;
}
.badge {
  background: #FFA800;
  color: #fff;
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .values .value-grid {
    flex-direction: column;
    gap: 16px;
  }
  .statistics .numbers-highlight ul {
    flex-direction: column;
    gap: 14px;
  }
  .achievement-badges {
    flex-direction: column;
    gap: 8px;
  }
}

/* ================
     CONTACT
===================*/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 22px;
}
.text-section {
  flex: 1 1 220px;
  min-width: 180px;
}
.working-hours {
  flex: 0 1 220px;
  min-width: 160px;
}
.contact-info {
  flex: 1 1 240px;
  min-width: 180px;
}
@media (max-width: 820px) {
  .contact-details {
    flex-direction: column;
    gap: 8px;
  }
}
.company-info {
  background: #E9E9ED;
  border-radius: 9px;
  color: #25405A;
  margin-top: 24px;
}
.company-info strong {
  font-weight: 600;
}

/* ================
    FOOTER
===================*/
footer {
  background: #fff;
  border-top: 1px solid #E9E9ED;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 23px 8px 8px 8px;
  gap: 9px;
  min-height: 80px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #315375;
  padding: 2px 4px;
  border-radius: 3px;
  transition: color 0.13s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFA800;
  background: #E9E9ED;
}
.footer-info {
  color: #9094AB;
  font-size: 0.93rem;
}
@media (max-width: 600px) {
  .footer-nav {
    gap: 12px;
  }
}

/* ===============
  LEGAL PAGES
===================*/
.legal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(49,83,117,0.05);
}
.legal .text-section {
  margin-top: 8px;
}
.legal h2 {
  margin-top: 2em;
}
/* ===============
  CONFIRMATION PAGE
===================*/
.confirmation .cta-btn {
  display: inline-block;
  margin-top: 18px;
}

/* ===============
     COOKIE CONSENT BANNER
===================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF7E5;
  color: #25405A;
  font-size: 1.02rem;
  border-top: 2px solid #FFA800;
  box-shadow: 0 -8px 28px rgba(49,83,117,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 12px;
  z-index: 1300;
  animation: cookie-slidein 0.37s cubic-bezier(.5,1.6,.5,1) 1;
  min-height: 56px;
}
@keyframes cookie-slidein {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btn {
  background: #FFA800;
  color: #25405A;
  padding: 9px 22px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 9px;
  margin-right: 1px;
  box-shadow: 0 2px 10px rgba(49,83,117,0.05);
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #25405A;
  color: #FFA800;
}
.cookie-banner .cookie-btn.reject {
  background: #E9E9ED;
  color: #25405A;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #FFA800;
  color: #25405A;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #25405A;
  border: 1px solid #E9E9ED;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #E9E9ED;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 6px;
    font-size: 0.98rem;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(49,83,117,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1301;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 12px;
  width: 99vw;
  max-width: 400px;
  box-shadow: 0 12px 42px rgba(49,83,117,0.18);
  padding: 32px 20px 24px 20px;
  animation: cookie-fadein 0.33s cubic-bezier(.5,1.6,.5,1) 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookie-fadein {
  from {transform: scale(0.93); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #25405A;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.13s;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal .close-modal:hover {
  background: #E9E9ED;
}
.cookie-modal h3 {
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-weight: 500;
  color: #25405A;
}
.cookie-category input[type=checkbox] {
  width: 19px; height: 19px;
  accent-color: #FFA800;
}
.cookie-category.essential label {
  color: #888C9E;
}

.cookie-modal .btn-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-row .cookie-btn {
  padding: 8px 15px;
  border-radius: 7px;
  font-size: 1rem;
}

/* ===============
   TRANSITIONS & EFFECTS
======================== */
*, ::before, ::after {
  box-sizing: inherit;
  transition: color 0.15s, background 0.2s, box-shadow 0.14s, border-color 0.13s;
}

/* micro-interactions on buttons, links */
button, .cta-btn, .cookie-btn, a {
  transition: background 0.13s, color 0.13s, box-shadow 0.16s, border 0.13s;
}

/* ===============
   MISC
================= */
::-webkit-input-placeholder { color:#b6bac5; }
::-moz-placeholder { color:#b6bac5; }
:-ms-input-placeholder { color:#b6bac5; }
::placeholder { color:#b6bac5; }

/* Hide scrollbars on overlay */
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  display: none;
}

/* Utility class to visually hide (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===============
  RESPONSIVE FINE TUNING
=================== */
@media (max-width: 610px) {
  .container {
    padding: 0 4px;
  }
  .section, .hero, .features, .services, .testimonials, .cta-block, .listing, .comparison, .guides, .info-steps, .pricing, .about, .values, .statistics, .contact, .company-info, .legal, .confirmation {
    padding: 13px 3px;
    margin-bottom: 12px;
    border-radius: 6px;
  }
  h1, .hero h1 {
    font-size: 1.13rem;
  }
  h2, .cta-block h2 {
    font-size: 1.02rem;
  }
}

/*
 ******** No display:grid, grid-* or columns used. All layout is flexbox-only. ********
*/