/* ---------------------------------------------------
RESET & BASE STYLES
--------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1B2733;
  background: #F2F6F9;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #225D83;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19756D;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #225D83;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; font-weight: 700; margin-bottom: 24px;
}
h2 {
  font-size: 2rem; font-weight: 600; margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; font-weight: 600; margin-bottom: 10px;
}
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 600; }
p, ul, ol, li, .text-section p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #22303A;
}
strong {
  font-weight: 600;
  color: #225D83;
}

/* ---------------------------------------------------
LAYOUT CONTAINERS
--------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---------------------------------------------------
HEADER & NAVIGATION
--------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E0E6EB;
  box-shadow: 0 2px 8px 0 rgba(34,93,131,0.03);
  padding-top: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 72px;
  position: relative;
}
.logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  flex: 1;
  gap: 22px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #225D83;
  padding: 7px 6px;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2F6F9;
  color: #19756D;
  text-decoration: none;
}
.button.primary {
  background-color: #225D83;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(34,93,131,0.07);
  transition: background 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 14px;
  outline: none;
  display: inline-block;
  text-align: center;
}
.button.primary:hover, .button.primary:focus {
  background: #19756D;
  box-shadow: 0 4px 14px 0 rgba(34,93,131,0.11);
  color: #fff;
}
.button.accent {
  background: #20A39E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 21px;
  border: none;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(32,163,158,0.08);
  transition: background 0.18s, box-shadow 0.15s;
  cursor: pointer;
  outline: none;
}
.button.accent:hover, .button.accent:focus {
  background: #19756D;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(32,163,158,0.12);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #225D83;
  padding: 6px 10px;
  line-height: 1;
  margin-left: 18px;
  border-radius: 6px;
  transition: background 0.13s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EAF0F4;
  color: #19756D;
}

/* ---------------------------------------------------
MOBILE MENU
--------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 32px rgba(34,93,131,0.12);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.76,0,.24,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #225D83;
  align-self: flex-end;
  margin: 22px 26px 4px 0;
  padding: 3px 6px;
  border-radius: 6px;
  transition: background 0.13s;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F2F6F9;
  color: #19756D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 40px 40px;
  flex: 1;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #225D83;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 4px;
  margin-bottom: 2px;
  border-radius: 4px;
  transition: background 0.12s, color 0.13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAF0F4;
  color: #19756D;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 15px;
  }
  .container {
    padding-left: 10px; padding-right: 10px;
  }
}

@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
  .main-nav a {
    font-size: 0.97rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .logo img { height: 38px; }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 63px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------------
SECTIONS: Universal Section Layouts
--------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,93,131,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features, .trust, .testimonials, .services, .pricing, .faq, .about, .team, .cta, .contact, .legal, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,93,131,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero {
  padding: 54px 20px 44px 20px;
  background: #225D83;
  background-image: linear-gradient(90deg, #225D83 80%, #20A39E 100%);
  color: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 6px 24px 0 rgba(34,93,131,0.10);
  margin-bottom: 60px;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .button.primary {
  background: #20A39E;
  color: #fff;
  box-shadow: 0 3px 18px rgba(32,163,158,0.12);
}
.hero .button.primary:hover, .hero .button.primary:focus {
  background: #19756D;
}

.cta {
  background: #225D83;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px rgba(34,93,131,0.06);
}
.cta h2, .cta p {
  color: #fff;
}
.cta .button.primary,
.cta .button.accent {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .section, section, .features, .trust, .testimonials, .services, .pricing, .faq, .about, .team, .cta, .contact, .legal, .thankyou {
    padding: 26px 4vw;
    margin-bottom: 38px;
  }
  .hero {
    padding: 32px 4vw 24px 4vw;
    border-radius: 0 0 18px 18px;
    margin-bottom: 36px;
  }
  .cta {
    border-radius: 12px;
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------------
CARDS & FLEX CONTAINERS
--------------------------------------------------- */
.card-container, .content-grid, .service-cards, .pricing-table, .comparison-grid, .feature-grid, .usp-list, .icon-grid, .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.card-container {
  margin-bottom: 20px;
}
.card, .service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(34,93,131,0.08);
  padding: 30px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.17s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 6px 24px rgba(34,93,131,0.15);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1000px) {
  .card-container, .content-grid, .service-cards, .feature-grid, .usp-list, .icon-grid {
    gap: 16px;
  }
  .card, .service-card {
    min-width: 220px;
    padding: 18px 12px;
  }
}
@media (max-width: 600px) {
  .card-container, .content-grid, .service-cards, .feature-grid, .usp-list, .icon-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-card {
    min-width: 0;
    width: 100%;
    padding: 16px 8px;
  }
}

/*
Feature-Grid and USP List
*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 24px 0 0 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6FAFD;
  border-radius: 12px;
  box-shadow: 0 1px 6px #d1e1ed1f;
  padding: 24px 22px;
  flex: 1 1 250px;
  min-width: 220px;
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 5px;
}
.feature-grid h3 {
  font-size: 1.12rem;
  color: #19756D;
  margin-bottom: 0;
}

.usp-list {
  flex-wrap: wrap;
  list-style: none;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.usp-list li {
  background: #EAF0F4;
  border-radius: 8px;
  padding: 12px 18px;
  color: #19756D;
  font-size: 1.03rem;
  flex: 1 1 270px;
  min-width: 180px;
  margin: 2px 0;
  position: relative;
  transition: box-shadow 0.14s;
}
.usp-list li:before {
  content: '✔';
  color: #225D83;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1rem;
}

.icon-grid, .trust-badges {
  align-items: center;
  gap: 28px;
}
.icon-grid img, .trust-badges img {
  height: 36px;
  width: 36px;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .feature-grid, .usp-list, .icon-grid, .trust-badges {
    gap: 11px;
  }
}

/* ---------------------------------------------------
TESTIMONIALS
--------------------------------------------------- */
.testimonials {
  gap: 32px;
  background: #F6FAFD;
  margin-bottom: 60px;
  box-shadow: none;
  border-radius: 20px;
}
.testimonials h2 {
  color: #225D83;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,93,131,0.045);
  margin-bottom: 20px;
  font-size: 1.07rem;
  line-height: 1.6;
  color: #193041;
  border-left: 5px solid #225D83;
}
.testimonial-card p {
  color: #193041;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: #19756D;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    padding: 14px 10px;
    gap: 8px;
  }
}

/* ---------------------------------------------------
TEXT + IMAGE & SPECIAL FLEX SECTIONS
--------------------------------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .text-image-section {
    align-items: flex-start;
    gap: 9px;
  }
}

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

/* ---------------------------------------------------
PRICING TABLE & LIST
--------------------------------------------------- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 280px;
  box-shadow: 0 1px 10px #225D8313;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table thead {
  background: #EAF0F4;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  font-size: 1.01rem;
  text-align: left;
}
.pricing-table th {
  color: #225D83;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}
.pricing-table td {
  color: #22303A;
}
.pricing-table tr:nth-child(even) td {
  background: #F6FAFD;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.comparison-grid {
  flex-direction: column;
  gap: 10px;
  background: #F6FAFD;
  border-radius: 8px;
  padding: 16px 16px 8px 16px;
  margin-bottom: 10px;
}
.comparison-grid h2 {
  font-size: 1.30rem;
  color: #19756D;
}

/* ---------------------------------------------------
FAQ & LISTS
--------------------------------------------------- */
.faq ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.faq ul li,
.text-section ul li {
  background: #EAF0F4;
  border-radius: 7px;
  padding: 12px 14px 12px 18px;
  color: #1A2A35;
  font-size: 0.99rem;
  margin-bottom: 0;
}
.faq ul li strong {
  display: inline-block;
  color: #225D83;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
}
.text-section ul {
  padding-left: 0;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

/* ---------------------------------------------------
CONTACT & SPECIAL SECTIONS
--------------------------------------------------- */
.contact ul,
.team ul {
  margin-top: 10px;
}
.contact ul li,
.team ul li {
  background: #EAF0F4;
  border-radius: 7px;
  padding: 11px 12px 11px 16px;
  margin-bottom: 0;
  color: #19756D;
}
.contact a {
  color: #20A39E;
  text-decoration: underline dotted;
  transition: color 0.16s, text-decoration 0.2s;
}
.contact a:hover {
  color: #225D83;
}
.location-map img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 2px 16px #225D8316;
  margin: 20px auto 0 auto;
  display: block;
}

/* ---------------------------------------------------
LEGAL & THANK YOU PAGE
--------------------------------------------------- */
.legal, .thankyou {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,93,131,0.07);
  padding: 48px 24px;
}
.legal h1, .thankyou h1 {
  color: #225D83;
}
.legal .text-section, .thankyou .text-section {
  background: #F6FAFD;
  border-radius: 10px;
  padding: 22px 20px;
  margin-top: 10px;
}

/* ---------------------------------------------------
FOOTER
--------------------------------------------------- */
footer {
  background: #225D83;
  color: #fff;
  padding: 34px 0 16px 0;
  border-radius: 22px 22px 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
footer .footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.15s, color 0.18s;
}
footer .footer-nav a:hover {
  opacity: 1;
  color: #20A39E;
}
footer .footer-contact {
  font-size: 0.98rem;
  color: #EAF0F4;
  margin-top: 10px;
  line-height: 1.5;
}
footer .footer-contact a {
  color: #20A39E;
  text-decoration: underline;
}
footer img {
  height: 44px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer {
    padding: 20px 0 12px 0;
    border-radius: 11px 11px 0 0;
  }
}

/* ---------------------------------------------------
GENERAL SPACING & ACCESSIBILITY
--------------------------------------------------- */
.section + .section,
.features + .features,
.services + .services,
.pricing + .pricing,
.faq + .faq,
.about + .about,
.team + .team,
.trust + .trust,
.cta + .cta,
.contact + .contact,
.legal + .legal,
.thankyou + .thankyou {
  margin-top: 32px;
}

/* ---------------------------------------------------
ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------------- */
.button,
.button.primary,
.button.accent,
.main-nav a,
.mobile-nav a,
.card,
.service-card {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border 0.18s;
}

section, .card, .service-card, .testimonial-card, .cta {
  transition: box-shadow 0.19s, background 0.17s;
}

.card:hover, .card:focus, .feature-grid li:hover, .usp-list li:hover {
  box-shadow: 0 8px 32px #225D8322;
  z-index: 3;
}

/* Icon gentle rise on hover */
.feature-grid li:hover img, .icon-grid img:hover, .trust-badges img:hover {
  transform: translateY(-4px) scale(1.1) rotate(-2deg);
  transition: transform 0.2s;
  filter: brightness(1.08) drop-shadow(0 4px 6px #225D8322);
}
.feature-grid img, .icon-grid img, .trust-badges img {
  transition: transform 0.2s, filter 0.16s;
}

/* ---------------------------------------------------
COOKIE CONSENT BANNER & MODAL
--------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #225D83;
  box-shadow: 0 0 18px 3px #225D8320;
  border-top: 2px solid #20A39E;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 24px 18px 24px;
  gap: 30px;
  animation: cookie-banner-slidein 0.5s cubic-bezier(.6,.8,.2,1);
}
@keyframes cookie-banner-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text {
  font-size: 1rem;
  max-width: 620px;
}
.cookie-consent-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 28px;
  align-items: center;
}
.cookie-consent-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  padding: 8px 20px;
  margin: 0 2px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
  outline: none;
}
.cookie-btn-accept {
  background: #20A39E;
  color: #fff;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #19756D;
}
.cookie-btn-reject {
  background: #EAF0F4;
  color: #225D83;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: #cbdce5;
  color: #19756D;
}
.cookie-btn-settings {
  background: #fff;
  border: 1.5px solid #225D83;
  color: #225D83;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #F2F6F9;
  color: #19756D;
}

@media (max-width: 900px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 10px;
    align-items: flex-start;
  }
  .cookie-consent-btn-group {
    margin-left: 0;
  }
}

.cookie-preference-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,93,131, 0.34);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  animation: fadeInModalBG 0.15s;
}
@keyframes fadeInModalBG {
  from { background: rgba(34,93,131, 0); }
  to { background: rgba(34,93,131, 0.34); }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(34,93,131, 0.17);
  max-width: 390px;
  min-width: 280px;
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  color: #225D83;
  margin-bottom: 12px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #E0E6EB;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-size: 1.04rem;
  color: #225D83;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category-toggle {
  width: 46px;
  height: 24px;
  border-radius: 14px;
  background: #EAF0F4;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  border: 1px solid #E0E6EB;
  flex-shrink: 0;
}
.cookie-category-toggle.toggle-on {
  background: #20A39E;
}
.cookie-category-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #225D8320;
  transition: left 0.18s;
}
.cookie-category-toggle.toggle-on:after {
  left: 22px;
}
.cookie-essential {
  color: #aaa;
  font-size: 0.97rem;
  font-style: italic;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    max-width: 94vw;
    min-width: 0;
    padding: 22px 8px 18px 8px;
  }
}

/* ---------------------------------------------------
RESPONSIVE LAYOUTS
--------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .main-nav { display: none; }
  .service-cards, .card-container, .feature-grid, .usp-list {
    flex-direction: column;
    gap: 16px;
  }
  .section, section, .features, .trust, .testimonials, .services, .pricing, .faq, .about, .team, .cta, .contact, .legal, .thankyou {
    padding: 15px 2vw;
    margin-bottom: 28px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .card, .service-card {
    padding: 10px 4px;
  }
  .testimonials, .cta {
    border-radius: 7px; margin-bottom: 22px;
  }
  .testimonial-card { padding: 10px 7px; }
  .comparison-grid { padding: 10px 6px 6px 6px; }
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }

/* ---------------------------------------------------
SCROLLBAR STYLES (For modern browsers)
--------------------------------------------------- */
::-webkit-scrollbar { width:9px; background:#F2F6F9; }
::-webkit-scrollbar-thumb { background:#EAF0F4; border-radius:8px; }
::-webkit-scrollbar-thumb:hover { background:#225D83; }

/* Hide non-essential scrollbars for overlays */
.mobile-menu, .cookie-preference-modal { scrollbar-width: thin; }
