/* ==== 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F2F6FB;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #214D72;
  background: #F2F6FB;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #214D72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6FBADF;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}

ul, ol {
  list-style: none;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #214D72;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; }

p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #214D72;
}
strong, b { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 16px 0 rgba(33,77,114,0.07);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  max-width: 780px;
  margin: 0 auto;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  position: relative;
}
.brand-logo img {
  height: 44px;
  width: auto;
  transition: filter 0.2s;
}
.brand-logo img:hover {
  filter: brightness(1.05) drop-shadow(0 3px 8px #E2ECF4);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 0 16px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #214D72;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover,
nav ul li a:focus {
  color: #fff;
  background: #6FBADF;
}
.cta-btn {
  background: #214D72;
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.125rem;
  border: none;
  box-shadow: 0 3px 12px 0 rgba(33,77,114,0.10);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.18s, transform 0.12s;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #6FBADF;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(33,77,114,0.12), 0 1.5px 6px 0 #D5E4EB;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #214D72;
  font-size: 2rem;
  cursor: pointer;
  z-index: 200;
  margin-left: auto;
  padding: 8px;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(242,246,251,0.987);
  box-shadow: 0 3px 32px 0 rgba(33,77,114,0.08);
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 38px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #214D72;
  cursor: pointer;
  position: absolute;
  top: 12px; right: 18px;
  z-index: 510;
  padding: 10px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6FBADF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 24px;
  gap: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #214D72;
  background: none;
  padding: 18px 32px;
  border-radius: 6px;
  transition: background 0.18s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7F0F7;
  color: #6FBADF;
}

@media (max-width: 1100px) {
  nav ul {
    gap: 12px;
  }
}
@media (max-width: 990px) {
  nav ul {
    gap: 4px;
  }
  nav .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .brand-logo {
    margin-right: auto;
  }
}

@media (max-width: 540px) {
  nav {
    gap: 4px;
    padding: 9px 0;
  }
  .brand-logo img {
    height: 34px;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(105deg, #F2F6FB 48%, #E7F0F7 95%);
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4edf4;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}
.hero h1 {
  color: #214D72;
  font-size: 2.375rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  max-width: 520px;
  margin: 0 auto 30px auto;
  font-size: 1.125rem;
  color: #405976;
}

/* ==== FEATURE GRID (WHY CHOOSE US) ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.feature-grid li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(33,77,114,.06);
  padding: 28px 20px 24px 20px;
  flex: 1 1 248px;
  min-width: 220px;
  max-width: 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 22px 0 rgba(33,77,114,.13);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #E7F0F7;
  padding: 8px;
}

/* ==== SERVICE CARDS ==== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-cards > div {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 252px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,77,114,0.08);
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  transition: box-shadow 0.20s, transform 0.16s;
}
.service-cards > div:hover {
  box-shadow: 0 12px 38px 0 rgba(33,77,114,0.15);
  transform: translateY(-3px) scale(1.016);
}
.service-cards img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 6px;
  padding: 7px;
  background: #E7F0F7;
}
.service-cards h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #214D72;
}
.service-cards p {
  font-size: 1rem;
  color: #405976;
  margin-bottom: 16px;
}
.service-cards a {
  margin-top: 10px;
  color: #6FBADF;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.16s, text-decoration 0.17s;
}
.service-cards a:hover, .service-cards a:focus {
  color: #214D72;
  text-decoration: underline;
}

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  min-width: 250px;
  max-width: 370px;
  flex: 1 1 300px;
  box-shadow: 0 2px 16px 0 rgba(33,77,114,.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1.5px solid #E2E8F0;
  color: #214D72;
  font-size: 1rem;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(33,77,114,0.20);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #214D72;
  font-style: italic;
}
.testimonial-card .rating {
  color: #6FBADF;
  letter-spacing: 1.5px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #405976;
  margin-top: -12px;
}

/* ==== BLOG ==== */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  margin-top: 10px;
}
.blog-categories a {
  color: #6FBADF;
  background: #E7F0F7;
  border-radius: 40px;
  padding: 6px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.14s, color 0.17s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #214D72;
  color: #fff;
}
.blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-post-previews article {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 350px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 13px 0 rgba(33,77,114,.08);
  padding: 26px 20px 18px 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
}
.blog-post-previews article:hover {
  box-shadow: 0 11px 26px 0 rgba(33,77,114,.15);
  transform: translateY(-2px) scale(1.012);
}
.blog-post-previews h3 a {
  color: #214D72;
  text-decoration: none;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.17s;
}
.blog-post-previews h3 a:hover, .blog-post-previews h3 a:focus {
  color: #6FBADF;
}
.blog-date {
  font-size: 0.97rem;
  color: #6FBADF;
  margin-top: 5px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(33,77,114,0.08);
  margin-bottom: 28px;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 18px 15px;
  text-align: left;
}
.pricing-table th {
  background: #E7F0F7;
  color: #214D72;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border-bottom: 2px solid #E2E8F0;
}
.pricing-table tbody tr {
  border-top: 1px solid #F2F6FB;
  transition: background 0.14s;
}
.pricing-table tbody tr:hover {
  background: #E7F0F7;
}
.pricing-table td {
  color: #405976;
}

/* ==== CTA SECTION ==== */
.cta-section {
  background: #E7F0F7;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(111,186,223,0.10);
  padding: 38px 0;
  margin-bottom: 28px;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.cta-section h2 {
  font-size: 2.1rem;
  color: #214D72;
}
.cta-section p {
  color: #405976;
  font-size: 1.07rem;
  max-width: 540px;
  margin: 0 auto 18px auto;
}

/* ==== PROCESS TIMELINE ==== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(33,77,114,0.08);
  padding: 30px 18px;
}
.process-timeline li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.process-timeline strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
}

/* ==== SERVICE LIST (SMART SOLUTIONS) ==== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(33,77,114,.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 21px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.service-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(33,77,114,0.13);
}
.service-list img {
  width: 38px;
  height: 38px;
  background: #E7F0F7;
  border-radius: 50%;
  margin-top: 6px;
}
.service-list h3 {
  margin-bottom: 8px;
  color: #214D72;
}
.service-list .service-price {
  color: #6FBADF;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-accordion details {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(33,77,114,0.06);
  padding: 20px 15px;
  margin-bottom: 10px;
  color: #214D72;
  transition: box-shadow 0.16s;
}
.faq-accordion details[open] {
  box-shadow: 0 7px 22px 0 rgba(33,77,114,.11);
}
.faq-accordion summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  cursor: pointer;
  outline: none;
}
.faq-accordion p {
  margin: 14px 0 0 0;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1.5px solid #E2E8F0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 22px 0;
}
.footer-main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-main ul li a {
  color: #405976;
  font-size: 0.95rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.14s, color 0.15s;
}
.footer-main ul li a:hover, .footer-main ul li a:focus {
  background: #E7F0F7;
  color: #214D72;
}
.footer-main p {
  font-size: 0.94rem;
  color: #92ADC3;
}
.footer-main img {
  width: 120px;
  margin-bottom: 0;
}
@media (max-width: 660px) {
  .footer-main {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-main ul {
    gap: 8px;
  }
}

/* ==== CONTACT PAGE ==== */
.contact-details {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 13px 0 rgba(33,77,114,.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-embed .map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E7F0F7;
  color: #92ADC3;
  border-radius: 11px;
  min-height: 110px;
  min-width: 230px;
  font-size: 1.13rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}
.next-steps-info {
  background: #E7F0F7;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  color: #405976;
  font-size: 1rem;
}
.confirmation-message {
  align-items: center;
  text-align: center;
}
.confirmation-message .cta-btn {
  margin-top: 11px;
}

/* ==== POLICY SECTION ==== */
.policy-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(33,77,114,.06);
  padding: 38px 22px;
  margin-bottom: 44px;
}

/* ==== LISTS ==== */
ul {
  margin-bottom: 20px;
}
ul li {
  margin-left: 18px;
  margin-bottom: 7px;
  line-height: 1.6;
  position: relative;
}
ul li:before {
  content: '\2022';
  color: #6FBADF;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* ==== TABLES ==== */
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: separate;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(33,77,114,0.06);
  overflow: hidden;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 900;
  background: #214D72;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 18px 20px;
  box-shadow: 0 -2px 14px 0 rgba(33,77,114,0.12);
  animation: appearCookieBanner 0.68s cubic-bezier(.77,0,.18,1) 0s 1;
}
@keyframes appearCookieBanner {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  max-width: 730px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
  justify-content: center;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
  margin-right: 0;
}
.cookie-banner .cookie-accept {
  background: #6FBADF;
  color: #214D72;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #214D72;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #214D72;
  border: 1.5px solid #6FBADF;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #6FBADF;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #E7F0F7;
  color: #214D72;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #6FBADF;
  color: #fff;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(33,77,114,0.28);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.23s;
  animation: appearCookieBackdrop 0.25s cubic-bezier(.77,0,.18,1) 0s 1;
}
@keyframes appearCookieBackdrop {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #214D72;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -6px 30px 0 rgba(33,77,114,0.18);
  width: 100%;
  max-width: 440px;
  padding: 34px 26px 21px 26px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: appearCookieModal 0.45s cubic-bezier(.77,0,.18,1) 0s 1;
}
@keyframes appearCookieModal {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #214D72;
  font-size: 1.22rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #E7F0F7;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .category-label {
  font-size: 1rem;
  color: #214D72;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category-toggle input[type="checkbox"] {
  appearance: none;
  width: 32px;
  height: 18px;
  border-radius: 10px;
  background: #E7F0F7;
  outline: none;
  transition: background 0.22s;
  position: relative;
}
.cookie-modal .category-toggle input[type="checkbox"]:checked {
  background: #6FBADF;
}
.cookie-modal .category-toggle input[type="checkbox"]:before {
  content: '';
  display: block;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
  transform: translateX(2px);
  position: absolute;
  top: 2px; left: 2px;
}
.cookie-modal .category-toggle input[type="checkbox"]:checked:before {
  transform: translateX(14px);
}
.cookie-modal .category-note {
  font-size: 0.95rem;
  color: #6FBADF;
  margin-left: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject, .cookie-modal .cookie-save {
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal .cookie-accept { background: #6FBADF; color: #214D72; }
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus { background: #214D72; color: #fff; }
.cookie-modal .cookie-reject {
  background: #fff;
  color: #214D72;
  border: 1.3px solid #6FBADF;
}
.cookie-modal .cookie-reject:hover, .cookie-modal .cookie-reject:focus {
  background: #6FBADF;
  color: #fff;
}
.cookie-modal .cookie-save {
  background: #E7F0F7;
  color: #214D72;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #214D72;
  color: #fff;
}

/* ==== SPACING + FLEXBOX UTILITIES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(33,77,114,0.08);
  padding: 28px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== RESPONSIVENESS ==== */
@media (max-width: 1080px) {
  .blog-post-previews {
    flex-direction: column;
    gap: 20px;
  }
  .service-cards {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .blog-post-previews, .service-cards, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-main ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.43rem; }
  .section, .policy-section {
    margin-bottom: 38px;
    padding: 24px 9px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 15px 10px;
    gap: 11px;
  }
  .footer-main img {
    width: 88px;
  }
  .cta-section {
    padding: 18px 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .process-timeline {
    padding: 18px 7px;
  }
  .service-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 7px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, .policy-section {
    padding: 10px 2px;
  }
  .cta-section {
    border-radius: 10px;
    padding: 11px 0;
  }
  .footer-main {
    padding: 20px 0 13px 0;
  }
  .cookie-banner {
    padding: 8px 6px 10px 6px;
  }
}

/* ==== ANIMATIONS / MICRO-INTERACTIONS ==== */
.card, .card-container > *, .testimonial-card, .feature-grid li, .service-cards > div, .service-list li, .blog-post-previews article {
  transition: box-shadow 0.21s, transform 0.19s, background 0.19s;
}
.card:active, .feature-grid li:active, .service-cards > div:active, .testimonial-card:active {
  transform: scale(0.97);
}
button, .cta-btn {
  transition: background 0.21s, color 0.15s, box-shadow 0.19s, transform 0.16s;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #6FBADF;
  outline-offset: 2px;
}

/* ==== SELECTION ==== */
::selection {
  background: #6FBADF;
  color: #fff;
}

/* ==== ACCESSIBILITY ==== */
[tabindex]:focus {
  outline: 2px solid #6FBADF !important;
  outline-offset: 2px;
}

/****** END ******/