/* ========= CSS RESET & BASE ========= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1B3556;
  background: #F3F8FC;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B3556;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #7BC7A6;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 16px;
}
button, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
button:focus {
  outline: 2px solid #1B3556;
  outline-offset: 2px;
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1B3556;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* ========= LAYOUT UTILITIES ========= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(27,53,86,0.06);
}
@media (max-width: 992px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 10px;
  }
}

/* ==== FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.08);
  padding: 32px 24px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 16px rgba(27,53,86,0.13);
}
.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,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    gap: 16px;
  }
}

/* ========== HEADER & NAV ========== */
header {
  background: #F3F8FC;
  border-bottom: 1px solid #dee7f0;
  width: 100%;
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 80px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1B3556;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5EDF6;
  color: #2863a5;
}
.btn-primary {
  background: #1B3556;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 24px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.06);
  transition: background 0.18s, box-shadow 0.15s, color 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #2863a5;
  color: #fff;
  box-shadow: 0 4px 18px rgba(27,53,86,0.14);
}
.btn-secondary {
  background: #7BC7A6;
  color: #1B3556;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(123,199,166,0.08);
  margin-top: 24px;
  transition: background 0.18s, color 0.13s, box-shadow 0.2s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #62b398;
  color: #fff;
  box-shadow: 0 4px 18px rgba(27,53,86,0.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #1B3556;
  margin-left: 28px;
  border: none;
  cursor: pointer;
  z-index: 110;
}

/* Responsive menu for mobile */
@media (max-width: 992px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1B3556;
  color: #fff;
  padding: 40px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  z-index: 1002;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 9999px rgba(27,53,86,0.28);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7BC7A6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  padding: 14px 0 14px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
  min-width: 160px;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #7BC7A6;
  color: #1B3556;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: #E5EDF6;
  padding: 60px 0 60px 0;
  border-bottom: 1px solid #dee7f0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: #1B3556;
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.18rem;
  color: #31567B;
}

/* ==== FEATURES GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 32px 0 0 0;
  padding: 0;
  justify-content: space-between;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 24px 18px 20px 18px;
  border-radius: 10px;
  width: 300px;
  min-width: 220px;
  box-shadow: 0 1px 6px rgba(27,53,86,0.08);
  gap: 15px;
  font-size: 1rem;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 2px 14px 0 rgba(27,53,86,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  color: #1B3556;
  font-size: 1.18rem;
  margin-bottom: 4px;
}
@media (max-width: 950px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-grid li {
    width: 100%;
    min-width: 0;
    flex: 1 1 140px;
  }
}
@media (max-width: 620px) {
  .feature-grid {
    flex-direction: column;
  }
}

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

/* ========== SERVICE CARDS ========== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 30px 0;
}
.service-cards .card {
  flex: 1 1 270px;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 18px 24px 18px;
  border: 1px solid #dee7f0;
  min-width: 230px;
  border-radius: 9px;
  background: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .service-cards {
    gap: 15px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F8FC;
  border: 1px solid #E5EDF6;
  border-radius: 10px;
  min-width: 260px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px rgba(27,53,86,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 2px 12px 0 rgba(27,53,86,0.17);
  transform: translateY(-3px) scale(1.01);
}
@media (max-width: 600px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

.client-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  max-height: 36px;
  opacity: 0.75;
}

.cta-banner {
  background: #1B3556;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(27,53,86,0.09);
  margin-bottom: 60px;
  padding: 44px 0;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #7BC7A6;
  color: #1B3556;
  margin-top: 22px;
}
.cta-banner .btn-primary:hover {
  background: #62b398;
  color: #fff;
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #dee7f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 32px;
}
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #e5edf6;
  font-size: 1rem;
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-row .cell {
  flex: 1 1 50%;
}
.pricing-row .cell strong {
  font-size: 1.07em;
}

/* ========== ABOUT - VALUES, BADGES, CERTIFICATES ========== */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 28px 0;
  list-style: disc;
}
.values-list li {
  background: #F3F8FC;
  border: 1px solid #dae4ef;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  flex: 1 1 200px;
  margin-bottom: 8px;
}
.confidence-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E5EDF6;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1.04rem;
  font-weight: 600;
  color: #1B3556;
  margin-top: 18px;
}
.certificates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  list-style: none;
}
.certificates-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F3F8FC;
  border-radius: 7px;
  padding: 10px 18px;
  font-size: 1rem;
  color: #1B3556;
}
.partner-logos {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.partner-logos img {
  height: 40px;
  opacity: 0.8;
}

/* ========== SERVICE CATEGORIES GRID ========== */
.service-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.category {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.05);
  border: 1px solid #dee7f0;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 240px;
  flex: 1 1 230px;
  transition: box-shadow 0.18s, transform 0.12s;
  margin-bottom: 20px;
}
.category:hover {
  box-shadow: 0 4px 20px 0 rgba(27,53,86,0.12);
  transform: translateY(-2px) scale(1.01);
}
.category img {
  width: 42px;
  margin-bottom: 9px;
}
@media (max-width: 725px) {
  .service-categories-grid {
    flex-direction: column;
    gap: 17px;
  }
  .category {
    width: 100%;
    min-width: 0;
    flex: 1 1 120px;
  }
}

/* ========== FAQ ACCORDION (STATIC, NO JS) ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 16px 0 0 0;
}
.faq-accordion div {
  background: #F3F8FC;
  border-radius: 8px;
  padding: 18px 18px 13px 18px;
  box-shadow: 0 1px 6px rgba(27,53,86,0.06);
  border: 1px solid #e2eaf2;
}
.faq-accordion h3 {
  font-size: 1.10rem;
  color: #1B3556;
  margin-bottom: 6px;
}
.faq-accordion p {
  font-size: 1rem;
  color: #31567B;
}

/* ========== ARTICLE LIST (GUIDE) ========== */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.article-card {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 9px rgba(27,53,86,0.06);
  border: 1px solid #dee7f0;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.article-card:hover {
  box-shadow: 0 6px 20px rgba(27,53,86,0.14);
  transform: translateY(-3px) scale(1.03);
}
.article-card h3 {
  font-size: 1.18rem;
  color: #1B3556;
}
.article-card a {
  color: #7BC7A6;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.14s;
}
.article-card a:hover {
  color: #1B3556;
}

.categories-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.categories-filter a {
  background: #E5EDF6;
  color: #1B3556;
  border-radius: 5px;
  padding: 5px 12px;
  transition: background 0.13s, color 0.13s;
  font-size: 0.98em;
}
.categories-filter a:hover, .categories-filter a.active {
  background: #7BC7A6;
  color: #fff;
}

.newsletter-signup {
  background: #F3F8FC;
  border: 1px solid #dee7f0;
  border-radius: 10px;
  padding: 22px 24px;
  color: #1B3556;
  font-size: 1rem;
  margin-top: 10px;
}
.newsletter-signup ul {
  margin-top: 12px;
  padding-left: 20px;
}

/* ========== STEPS TIMELINE (SERVICES) ========== */
.steps-timeline {
  list-style: decimal inside;
  background: #F3F8FC;
  border: 1px solid #dee7f0;
  border-radius: 10px;
  padding: 12px 28px 12px 36px;
  margin: 20px 0 20px 0;
  font-size: 1rem;
}
.steps-timeline li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
  background: #1B3556;
  color: #fff;
  padding: 44px 0 0 0;
  border-top: 6px solid #7BC7A6;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-logo img {
  max-width: 160px;
  min-width: 110px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #E5EDF6;
  font-size: 1rem;
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover {
  color: #7BC7A6;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #E5EDF6;
}
.footer-contact img {
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact a {
  color: #7BC7A6;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-social a {
  display: block;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  transition: background 0.16s;
}
.footer-social a:hover {
  background: #7BC7A6;
}
.footer-social img {
  width: 24px;
  height: 24px;
}
.legal-disclaimer {
  text-align: center;
  font-size: 0.98rem;
  color: #F3F8FC;
  margin: 22px 0 0 0;
  padding-bottom: 18px;
  letter-spacing: 0.01em;
  opacity: 0.85;
}
@media (max-width: 950px) {
  .footer-grid {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
}

/* ========== UTILITIES & MISC ========== */
.text-section {
  margin-bottom: 24px;
}
.content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 22px;
}

/* ========== SPACING CONSISTENCY ========== */
.section, .card, .feature-grid li, .category, .testimonial-card, .article-card {
  margin-bottom: 20px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: 100vw;
  background: #1B3556;
  color: #fff;
  padding: 24px 16px 16px 16px;
  box-shadow: 0 -2px 24px rgba(27,53,86,0.19);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  transform: translateY(110%);
  border-radius: 18px 18px 0 0;
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-message {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
  max-width: 600px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.17s, color 0.13s, box-shadow 0.16s;
  box-shadow: 0 1px 6px rgba(27,53,86,0.09);
}
.cookie-banner .btn-cookie.accept {
  background: #7BC7A6;
  color: #1B3556;
}
.cookie-banner .btn-cookie.accept:hover {
  background: #62b398;
  color: #fff;
}
.cookie-banner .btn-cookie.reject {
  background: #F3F8FC;
  color: #1B3556;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #E5EDF6;
}
.cookie-banner .btn-cookie.settings {
  background: transparent;
  border: 2px solid #7BC7A6;
  color: #7BC7A6;
}
.cookie-banner .btn-cookie.settings:hover {
  background: #7BC7A6;
  color: #1B3556;
}
@media (max-width: 620px) {
  .cookie-banner {
    padding: 16px 6px 10px 8px;
    border-radius: 13px 13px 0 0;
  }
  .cookie-banner .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -80%) scale(0.96);
  background: #fff;
  color: #1B3556;
  z-index: 1250;
  border-radius: 15px;
  box-shadow: 0 8px 40px 0 rgba(40,99,165,0.19);
  padding: 44px 32px 32px 32px;
  width: 90vw;
  max-width: 440px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.35s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #1B3556;
}
.cookie-modal input[type="checkbox"]:not(:checked) + .toggle {
  background: #eee;
  box-shadow: none;
}
.cookie-modal .toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #7BC7A6;
  display: inline-block;
  border-radius: 11px;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.16s;
  margin-right: 6px;
}
.cookie-modal .toggle:before {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 9px;
  transition: left 0.15s;
}
.cookie-modal input[type="checkbox"]:not(:checked) + .toggle:before {
  left: 2px;
}
.cookie-modal input[type="checkbox"]:checked + .toggle:before {
  left: 18px;
}
.cookie-modal-category input[type="checkbox"] {
  display: none;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #1B3556;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #7BC7A6;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 26px;
}
.cookie-modal-actions .btn-cookie {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 1rem;
}

/* ==== FORMS & INPUTS (for newsletter/signup, base styles) ==== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1px solid #dee7f0;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #7BC7A6;
  border-color: #7BC7A6;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ==== MISC: HIDE (e.g. for overlays) ==== */
.hide { display: none !important; }

/* ========== MEDIA QUERIES FOR RESPONSIVENESS ========== */
@media (max-width: 1240px) {
  .container {
    max-width: 99vw;
    padding: 0 10px !important;
  }
  .footer-logo img {
    max-width: 120px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .cta-banner { padding: 28px 0; }
  .section { padding: 15px 6px; }
}

/* ========= MICRO-INTERACTIONS ========= */
.btn-primary,
.btn-secondary,
.btn-cookie {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.12s;
}
.card, .testimonial-card, .category, .article-card {
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .category:hover, .article-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(27,53,86,0.11);
  transform: translateY(-2px) scale(1.02);
}

::-webkit-scrollbar {
  width: 9px;
  background: #F3F8FC;
}
::-webkit-scrollbar-thumb {
  background: #E5EDF6;
  border-radius: 7px;
}

/* ========= Z-INDEX SPECIAL CASES ========= */
.mobile-menu { z-index: 1002; }
.mobile-menu-toggle { z-index: 110; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1250; }

/* Customize selection for accessibility */
::selection {
  background: #7BC7A6;
  color: #fff;
}
