/* --- 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, 
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 {
  font-size: 16px;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8fafb;
  color: #1a2c38;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1769aa;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #71bc68;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
  color: #16314a;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #34495e;
}
strong { font-weight: 600; color: #1769aa; }
main { flex: 1 1 auto; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

/* --- HEADER & NAVIGATION --- */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(26,44,56, 0.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #16314a;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f0f6f9;
  color: #1769aa;
}
.main-nav .btn-primary {
  margin-left: 8px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: #1769aa;
  margin-left: 24px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
  z-index: 51;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f4f8fb;
  color: #71bc68;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.44,.07,.78,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 24px 0 24px;
  width: 100vw;
  max-width: 350px;
  box-shadow: -2px 0 16px rgba(26,44,56,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #1769aa;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #71bc68;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.1rem;
  padding: 16px;
  border-radius: 8px;
  color: #16314a;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a.btn-primary {
  margin-top: 12px;
  background: #1769aa;
  color: #fff;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4f8fb;
  color: #1769aa;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  header .container {
    min-height: 60px;
    padding: 0 8px;
  }
  .logo {
    height: 50px;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(98deg, #eaf7fe 70%, #e2f5e6 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 58px;
  box-shadow: 0 3px 16px 0 rgba(26,44,56,0.03);
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section .container {
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.hero-section h1 {
  color: #1769aa;
  font-size: 2.2rem;
  font-weight: 700;
}
.hero-section p {
  font-size: 1.1rem;
  color: #426272;
  margin-bottom: 28px;
}
@media (max-width:700px) {
  .hero-section {
    border-radius: 0 0 18px 18px;
    padding: 36px 0;
  }
  .hero-section h1 {
    font-size: 1.32rem;
  }
}

/* --- FEATURES & CARDS --- */
.features-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(26,44,56,0.04);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
  margin-bottom: 6px;
  align-items: stretch;
  justify-content: space-between;
}
.feature-card {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: #f6fafb;
  border-radius: 17px;
  box-shadow: 0 1px 6px 0 rgba(26,44,56,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.24s;
}
.feature-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(26,44,56,0.09);
}
@media (max-width:900px) {
  .feature-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
  .feature-card {
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 100%;
  }
}
@media (max-width:600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card {
    min-width: 0;
  }
}

/* --- SERVICE CARDS (HOMEPAGE PREVIEW) --- */
.services-preview .service-cards,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.service-card, .service-item {
  flex: 1 1 265px;
  max-width: 350px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(26,44,56,0.07);
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.22s;
}
.service-card img, .service-item img {
  width: 32px;
  margin-bottom: 6px;
}
.service-card a {
  margin-top: auto;
  color: #1769aa;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.19s;
}
.service-card:hover, .service-item:hover {
  box-shadow: 0 8px 20px 0 rgba(26,44,56,0.12);
  transform: translateY(-6px) scale(1.01);
}
.service-card a:hover {
  color: #71bc68;
}
@media (max-width:900px) {
  .services-preview .service-cards, .services-list {
    gap: 17px;
  }
}
@media (max-width:700px) {
  .services-preview .service-cards, .services-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials,
.testimonials-section {
  background: #f6fafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(26,44,56,0.04);
}
.testimonials .testimonial-slider,
.testimonials-section .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 22px 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(26,44,56,0.09);
  min-width: 250px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, border 0.12s;
  border: 1px solid #eaf1f3;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(26,44,56,0.17);
  border: 1px solid #71bc68;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #18344b;
  margin-bottom: 10px;
}
.testimonial-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1769aa;
  margin-top: 2px;
}
.star-rating {
  color: #f4b400;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
}
@media (max-width:900px) {
  .testimonials .testimonial-slider,
  .testimonials-section .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width:700px) {
  .testimonials .testimonial-slider,
  .testimonials-section .testimonial-slider {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- CTA BUTTONS --- */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  border: none;
  background: #1769aa;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(26,44,56,0.04);
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.16s;
  margin-top: 8px;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #145a92;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(26,107,170,0.07);
}
.btn-secondary {
  background: #71bc68;
  color: #fff;
  margin: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1769aa;
  color: #fff;
}

/* --- STATISTICS --- */
.numbers-section .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 8px;
}
.numbers-section .stats-grid > div {
  background: #eaf7fe;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(26,44,56,0.08);
  padding: 24px 18px;
  min-width: 140px;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.numbers-section .stats-grid h3 {
  font-size: 1.7rem;
  color: #1769aa;
  margin-bottom: 7px;
  margin-top: 4px;
}
.numbers-section .stats-grid p {
  color: #34495e;
  font-size: 1rem;
  text-align: center;
}
@media (max-width:700px) {
  .numbers-section .stats-grid {
    gap: 10px;
    flex-direction: column;
  }
}

/* --- PRICING TABLES --- */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.pricing-table {
  flex: 1 1 250px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(26,44,56,0.05);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #eaf1f3;
  transition: box-shadow 0.22s, border 0.17s;
}
.pricing-table:hover, .pricing-table:focus-within {
  box-shadow: 0 8px 22px 0 rgba(26,44,56,0.13);
  border: 1.7px solid #1769aa;
}
.pricing-table h3 {
  color: #16314a;
  font-size: 1.3rem;
}
.pricing-table p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.pricing-table ul {
  margin-bottom: 16px;
  margin-top: 6px;
}
.pricing-table li {
  margin-left: 0;
  color: #34495e;
}

@media (max-width:900px) {
  .pricing-tables {
    gap: 12px;
  }
}
@media (max-width:700px) {
  .pricing-tables {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- FAQ ACCORDIONS --- */
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(26,44,56,0.07);
  padding: 20px 17px;
  margin-bottom: 12px;
  transition: box-shadow 0.13s, border 0.13s;
  border: 1px solid #eaf1f3;
}
.faq-item:hover, .faq-item:focus-within {
  border: 1px solid #1769aa;
  box-shadow: 0 3px 14px 0 rgba(26,44,56,0.09);
}
.faq-item h3 {
  font-size: 1.11rem;
  margin-bottom: 7px;
  color: #16314a;
}
.faq-item p {
  color: #425d72;
  font-size: 1rem;
}

@media (max-width:700px) {
  .faq-preview-section .accordion-faq, .faq-section .accordion-faq {
    gap: 9px;
  }
}

/* --- BENEFITS --- */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.benefits-list li {
  background: #e2f5e6;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  min-width: 170px;
  color: #334;
}
.benefits-list img {
  width: 26px;
}
@media (max-width:700px) {
  .benefits-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- CTA SECTION --- */
.cta-section {
  background: #e2f5e6;
  border-radius: 22px;
  box-shadow: 0 1px 10px 0 rgba(113,188,104,0.09);
  text-align: center;
}
.cta-section h2 {
  color: #1769aa;
  font-size: 1.6rem;
  font-weight: 700;
}
.cta-section p {
  color: #34495e;
  font-size: 1.06rem;
}
.cta-section .btn-primary {
  margin: 0 auto;
}

/* --- CREDENTIALS/CERTIFICATIONS --- */
.credentials-section .certifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.certification-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(26,44,56,0.07);
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 170px;
  margin-bottom: 20px;
}
.certification-item img {
  width: 28px;
}

@media (max-width:700px) {
  .certifications-list {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- CONTACT DETAILS SECTION --- */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.07rem;
}
.contact-details p,img {
  vertical-align: middle;
}
.contact-details img {
  width: 19px;
  margin-right: 8px;
  margin-bottom: -2px;
}
.contact-details a {
  color: #1769aa;
  font-weight: 500;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: #71bc68;
}

/* --- MAP SECTION --- */
.map-section {
  background: #f6fafb;
  border-radius: 18px;
  padding-bottom: 30px;
}

/* --- THANK YOU PAGE --- */
.thank-you-section {
  background: #eaf7fe;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(26,44,56,0.04);
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.thank-you-section h1 {
  color: #1769aa;
  font-size: 2.1rem;
}
.thank-you-section p {
  color: #34495e;
  font-size: 1.1rem;
}
.thank-you-section ul {
  text-align: left;
  margin: 0 auto 20px auto;
  max-width: 400px;
  color: #34495e;
  font-size: 1rem;
}

/* --- TEXT CONTENT (ABOUT/LEGAL) --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.text-section ul {
  margin-left: 1.22em;
  list-style: disc;
  margin-bottom: 10px;
}
.text-section li {
  color: #426272;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* --- FOOTER --- */
footer {
  background: #ffffff;
  box-shadow: 0 -2px 12px 0 rgba(26,44,56,0.04);
  padding-top: 34px;
  padding-bottom: 28px;
  margin-top: 64px;
  border-radius: 44px 44px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-navigation a {
  color: #1769aa;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.17s, background 0.13s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #71bc68;
  background: #f0f6f9;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 1.05rem;
  color: #426272;
}
.footer-logo {
  min-width: 52px;
}
.contact-short-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.contact-short-info span, .contact-short-info a {
  color: #426272;
  font-size: 1rem;
}
.contact-short-info a {
  color: #1769aa;
  font-weight: 500;
}
.contact-short-info a:hover {
  color: #71bc68;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  transition: transform 0.14s, opacity 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.5) saturate(1.1) drop-shadow(0 0 1px #71bc68);
  transform: scale(1.13);
}
.footer-social img {
  width: 24px;
  height: 24px;
}
@media (max-width:700px) {
  .footer-navigation {
    gap: 6px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-social {
    gap: 10px;
  }
  footer .container {
    padding: 0 10px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-top: 2px solid #eaf1f3;
  box-shadow: 0 -1px 12px 0 rgba(26,44,56,0.06);
  padding: 20px 40px 20px 20px;
  z-index: 9999;
  max-width: 100vw;
  font-size: 0.99rem;
  transition: transform 0.44s cubic-bezier(.44,.07,.78,1), opacity 0.33s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 320px;
  color: #34495e;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 15px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  outline: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-accept {
  background: #1769aa;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #145a92;
}
.cookie-reject {
  background: #eaeaea;
  color: #16314a;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #dbdbdb;
  color: #1769aa;
}
.cookie-settings {
  background: #fff;
  color: #1769aa;
  border: 1.5px solid #1769aa;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #1769aa;
  color: #fff;
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 17px 9px 13px 9px;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(44, 62, 80, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 32px 30px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 42px 0 rgba(26,44,56,0.20);
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #1769aa;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #426272;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 5px;
  transition: background 0.17s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f4f8fb;
  color: #1769aa;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f4f8fb;
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-category .cookie-essential {
  color: #71bc68;
  font-weight: 600;
  margin-left: 8px;
  font-size: 0.97rem;
}
.cookie-category input[disabled], .cookie-essential {
  cursor: not-allowed;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  padding: 8px 24px;
  border-radius: 14px;
  font-size: 1rem;
}
@media (max-width:600px) {
  .cookie-modal-content {
    min-width: 0;
    width: 97vw;
    padding: 20px 6vw 18px 6vw;
  }
  .cookie-modal-content h2 { font-size: 1.07rem; }
}

/* --- RESPONSIVE SPACING/PATTERNS (MANDATORY FLEXBOX) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section, section {
    padding: 26px 7px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: column;
  box-sizing: border-box;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SMOOTH TRANSITIONS & MICRO-INTERACTIONS --- */
button, .btn-primary, .btn-secondary, .main-nav a, .footer-navigation a {
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.13s;
}

.card, .feature-card, .service-card, .service-item, .pricing-table, .testimonial-card, .certification-item, .faq-item {
  will-change: box-shadow, transform;
}

/* --- SPECIAL COMPONENT CLASSES FOR EACH SECTION --- */
.services-list-section .services-list {
  margin-top: 18px;
}
.process-section .step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}
.process-section .step {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(26,44,56,0.035);
  flex: 1 1 170px;
  min-width: 150px;
  max-width: 260px;
  padding: 19px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.13s;
  border: 1px solid #f2f2f2;
}
.process-section .step:hover, .process-section .step:focus-within {
  box-shadow: 0 3px 15px 0 rgba(113,188,104,0.08);
  border: 1px solid #71bc68;
}
.process-section .step img {
  width: 28px;
  margin-bottom: 8px;
}

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

[tabindex]:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid #1769aa;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #eaf7fe;
}

/* --- GENERAL UTILITIES & PRINT --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}

/* --- FONT IMPORTS (Montserrat/Roboto) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');
