/* =============================
   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;
  background: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  box-sizing: border-box;
  background-color: #F4F7FA;
  color: #27304B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #27304B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #7FC9B7;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =============================
   TYPOGRAPHY & BRAND FONTS
   ============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #27304B;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1.15rem;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
}
p, li, span, label, input, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #27304B;
}
p {
  margin-bottom: 14px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

/* =============================
   LAYOUT CONTAINERS
   ============================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(39,48,75,0.06);
}
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 20px 32px 20px;
  background: #F4F7FA;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(39,48,75,0.09);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 72px 40px 56px 40px;
  }
  .section {
    padding: 60px 40px;
  }
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(39,48,75,0.07);
  border-bottom: 1px solid #e4eaf1;
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 32px;
  min-width: 124px;
}
.main-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #27304B;
  padding: 8px 0;
  transition: color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7FC9B7;
}
.cta-primary {
  background: #27304B;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 24px;
  box-shadow: 0 1px 7px 0 rgba(39,48,75,.08);
  margin-left: 16px;
  margin-right: 8px;
  transition: background .2s, color .2s, box-shadow .22s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #7FC9B7;
  color: #27304B;
  box-shadow: 0 2px 16px #aadfad40;
}
.cta-secondary {
  background: #7FC9B7;
  color: #27304B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
  margin-top: 6px;
  box-shadow: 0 1px 4px 0 rgba(127,201,183,0.08);
  transition: background .2s, color .2s, box-shadow .22s;
  border: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #27304B;
  color: #fff;
  box-shadow: 0 3px 18px #27304b30;
}

/* Burger Hamburger Mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F7FA;
  color: #27304B;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  z-index: 31;
  transition: background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E7EFF2;
}
/* Hide nav for mobile, show on desktop */
@media (min-width: 992px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =============================
   MOBILE NAVIGATION MENU
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0;  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(39,48,75, 0.96);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.85, 0, 0.15, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 10px 0;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7FC9B7;
  color: #27304B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 32px 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  padding: 14px 0;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background .17s, color .2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7FC9B7;
  color: #27304B;
}
.mobile-menu {
  box-shadow: 0 4px 20px 0 #27304b90;
}

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

/* =============================
   MAIN LAYOUT & SPACING
   ============================= */
main {
  width: 100%;
  padding-top: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
}
@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
/* Spacing patterns */
.card-container,
.card-grid,
.feature-grid,
.blog-article-list,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}
.certifications {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 16px 0 0 0;
  align-items: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-slider,
.testimonial-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 #7fc9b70a;
  background: #fff;
  transition: box-shadow 0.2s;
}
.card:hover, .feature-card:hover, .service-card:hover {
  box-shadow: 0 4px 24px #7fc9b730;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px){
  .card-container, .feature-grid, .content-grid, .blog-article-list, .testimonial-slider, .testimonial-card-group {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* =============================
   FEATURE CARDS & SERVICE CARDS
   ============================= */
.feature-grid, .service-cards {
  width: 100%;
}
.feature-card, .service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 #27304b11;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 260px;
  min-height: 190px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .17s;
  border: 1px solid #e4eaf1;
}
.feature-card img, .service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  filter: grayscale(7%) contrast(1.1) brightness(1.15);
}
.feature-card h3, .service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #27304B;
}
.feature-card p, .service-card p { color: #27304B; }
.feature-card:hover, .service-card:hover {
  box-shadow: 0 2px 20px 0 #7fc9b733;
  transform: translateY(-3px) scale(1.015);
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 #27304b12;
  padding: 24px 28px;
  min-width: 260px;
  margin-bottom: 20px;
  gap: 14px;
  border-left: 5px solid #7FC9B7;
  transition: box-shadow .15s, border-color .18s;
  color: #27304B;
}
.testimonial-card p {
  color: #27304B;
  font-size: 1rem;
}
.testimonial-card span {
  color: #7FC9B7;
  font-weight: 600;
  font-size: .98rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 20px #7FC9B755;
  border-left: 5px solid #27304B;
}

/* =============================
   BLOG LIST & ARTICLES
   ============================= */
.blog-article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 24px 0 18px 0;
}
.blog-article-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px #27304b11;
  flex: 1 1 270px;
  min-width: 240px;
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .17s, transform .18s;
}
.blog-article-list article:hover {
  box-shadow: 0 4px 20px #7fc9b733;
  transform: translateY(-2px);
}
.blog-article-list h3 {
  margin-bottom: 6px;
}

/* =============================
   BLOG CATEGORIES & SEARCH
   ============================= */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .99rem;
}
.blog-categories span { font-weight: 600; }
.blog-categories a {
  color: #7FC9B7;
  background: #F4F7FA;
  padding: 5px 15px;
  border-radius: 12px;
  font-weight: 500;
  margin-right: 3px;
  transition: background .17s, color .18s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #7FC9B7;
  color: #fff;
}
/* SEARCH BAR Blog */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 0 0;
}
.search-bar input[type="text"] {
  font-size: 1rem;
  border: 1px solid #e4eaf1;
  background: #F4F7FA;
  border-radius: 8px;
  padding: 8px 12px;
  width: 180px;
  transition: border .12s;
}
.search-bar input[type="text"]:focus {
  border-color: #7FC9B7;
}
.search-bar button {
  background: #7FC9B7;
  color: #27304B;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 15px;
  transition: background .17s, color .19s;
  border: none;
}
.search-bar button:hover, .search-bar button:focus {
  background: #27304B;
  color: #fff;
}

/* =============================
   CONTACT INFO & FAQ
   ============================= */
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin: 18px 0 12px 0;
}
.contact-info img {
  width: 26px;
  height: 26px;
  filter: grayscale(8%) contrast(1.1);
}
.contact-info span {
  font-weight: 600;
  font-size: 1rem;
  min-width: 160px;
  color: #27304B;
}
@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 #7fc9b71a;
  padding: 18px 22px;
  transition: box-shadow .17s;
}
.faq-item h3 {
  font-size: 1rem;
  color: #27304B;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: .98rem;
  color: #27304B;
}
.faq-item:hover {
  box-shadow: 0 4px 16px #7fc9b735;
}

/* =============================
   FOOTER & BOTTOM ELEMENTS
   ============================= */
footer {
  background: #fff;
  border-top: 1px solid #e4eaf1;
  width: 100%;
  padding: 0;
  box-shadow: 0 -1px 6px #27304b0a;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 36px;
  padding-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  font-size: 0.97rem;
}
.footer-menu a {
  color: #27304B;
  padding: 8px 0;
  font-weight: 500;
  border-radius: 4px;
  transition: color .2s, background .17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #7FC9B7;
  background: #F4F7FA;
}
.brand-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px 24px;
  flex-wrap: wrap;
}
.brand-info img {
  height: 34px;
  width: auto;
}
.brand-info span {
  color: #27304B;
  font-size: .98rem;
  font-weight: 400;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(24%) contrast(1.3) brightness(1.04);
  transition: filter .15s;
}
.social-links a:hover img {
  filter: grayscale(0%) contrast(1.2) brightness(1) drop-shadow(0 0 8px #7FC9B7);
}

@media (max-width: 768px) {
  footer .container {
    gap: 20px 0;
    padding-top: 28px;
    padding-bottom: 8px;
  }
  .footer-menu {
    gap: 16px;
  }
  .brand-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* =============================
   TEXT-CONTENT & UTILS
   ============================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .content-wrapper {
    gap: 30px;
  }
  .footer-menu {
    font-size: 1rem;
  }
}

/* =============================
   General Utility
   ============================= */
.mt-2 { margin-top: 2px; }
.mt-6 { margin-top: 6px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-20 { margin-bottom: 20px; }
.center-text { text-align: center; }
.rounded { border-radius: 12px; }
.shadow-soft { box-shadow: 0 1px 8px #27304b0a; }
.border-b { border-bottom: 1px solid #e4eaf1; }

/* =============================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ============================= */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .logo { margin-right: 0; }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 10px;
    border-radius: 10px;
  }
  .hero-section {
    border-radius: 12px;
    padding: 30px 10px 18px 10px;
  }
}
/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10014;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #27304B;
  color: #fff;
  font-size: 1rem;
  padding: 20px 24px;
  box-shadow: 0 -2px 18px #27304b36;
  gap: 18px;
  transition: transform .3s;
  transform: translateY(0);
  min-height: 64px;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  color: #fff;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 20px;
  background: #fff;
  color: #27304B;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 4px #27304b17;
  margin: 0;
  margin-bottom: 6px;
  transition: background .16s, color .17s, box-shadow .16s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #7FC9B7;
  color: #fff;
  box-shadow: 0 1px 8px #7fc9b744;
}
.cookie-banner .cookie-settings-btn {
  background: #7FC9B7;
  color: #fff;
  font-weight: 500;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #27304B;
  color: #fff;
  box-shadow: 0 1px 8px #27304b31;
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10017;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 42, 61, 0.73);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 97vw;
  width: 380px;
  border-radius: 16px;
  box-shadow: 0 6px 36px #27304b51;
  padding: 32px 28px 26px 28px;
  color: #27304B;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInModal .30s cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes fadeInModal {
  from { transform: translateY(24px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.16rem;
  color: #27304B;
  margin-bottom: 14px;
  font-weight: 700;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-category-row label {
  font-size: 1rem;
  font-weight: 600;
  color: #27304B;
  margin-bottom: 0;
}
.cookie-category-row input[type="checkbox"] {
  appearance: none;
  width: 22px; height: 22px;
  border: 2px solid #7FC9B7;
  border-radius: 5px;
  background: #F4F7FA;
  outline: none;
  transition: border .13s;
  position: relative;
}
.cookie-category-row input[type="checkbox"]:checked {
  background: #7FC9B7;
  border-color: #27304B;
}
.cookie-category-row input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  width: 8px; height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  position: absolute;
  top: 2px; left: 6px;
  transform: rotate(42deg);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  background: #27304B;
  color: #fff;
  border: none;
  transition: background .14s, color .14s, box-shadow .14s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #7FC9B7;
  color: #27304B;
  box-shadow: 0 1px 6px #7FC9B755;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 1.3rem;
  background: none;
  color: #27304B;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .12s;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #7FC9B7;
  color: #fff;
}
.cookie-modal .essential {
  color: #aaa;
  font-weight: 400;
  font-size: .95rem;
  margin-left: 5px;
}
@media (max-width: 430px) {
  .cookie-modal {
    min-width: unset;
    width: 97vw;
    padding: 18px 6vw 12px 6vw;
  }
  .cookie-category-row {
    gap: 12px;
    flex-wrap: wrap;
  }
  .cookie-modal h3 { font-size: 1rem; }
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.cta-primary, .cta-secondary, .blog-article-list article, .feature-card, .service-card, .faq-item, .testimonial-card, .cookie-banner button, .cookie-modal button {
  transition: box-shadow .17s, color .17s, background .18s, border-color .17s, transform .16s;
}

/* ===============
   SCROLLBARS
   =============== */
::-webkit-scrollbar { width: 9px; background: #F4F7FA; }
::-webkit-scrollbar-thumb { background: #E7EFF2; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #7FC9B7; }

/* ===============
   SELECTION
   =============== */
::selection { background: #7FC9B7; color: #fff; }

/* ===============
   SCANDINAVIAN NEUTRALS
   =============== */
body, .hero-section, .section {
  background: #F4F7FA;
}

/* ===============
   PRINT OPTIMIZATION
   =============== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  section, .container { box-shadow: none !important; border: none !important; }
}
