/* CSS Reset and Base Styles */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #14324B;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.55;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20638A;
  text-decoration: none;
  font-weight: 600;
  transition: color .21s;
}
a:hover,
a:focus {
  color: #277940;
  outline: none;
}
ul {
  padding-left: 1.5em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
li {
  margin-bottom: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #20638A;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 0.8em;
  color: #32506D;
}

/* Spacing & Layout Utilities */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(32,99,138,0.08);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 250px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 18px;
  background: #E6F2F8;
  box-shadow: 0 3px 12px 0 rgba(32,99,138,0.11);
  margin-right: 0;
  margin-bottom: 24px;
  max-width: 370px;
  min-width: 250px;
  color: #14324B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: #E6F2F8;
  box-shadow: 0 2px 10px 0 rgba(32,99,138, .07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  min-height: 68px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #20638A;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .18s, color .21s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #20638A;
  color: #fff;
}
.cta-btn {
  background: #20638A;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(32,99,138,0.11);
  transition: background .19s, box-shadow .23s, transform .17s;
  display: inline-block;
  margin-left: 16px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #277940;
  box-shadow: 0 8px 22px 0 rgba(39,121,64,0.12);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #20638A;
  margin-left: 14px;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 4201;
  transition: background .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #20638A;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,99,138,.92);
  z-index: 4200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.23,1.41,.38,1);
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 34px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  z-index: 4202;
  cursor: pointer;
  transition: color .19s, background .19s;
  border-radius: 10px;
  padding: 0 6px;
}
.mobile-menu-close:focus {
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 9px;
  transition: background .19s, color .2s;
  width: 80vw;
  text-align: center;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff;
  color: #20638A;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(-8deg, #E6F2F8 86%, #6FC06E 120%);
  padding-top: 60px;
  padding-bottom: 70px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 50px -20px rgba(32,99,138,0.14);
  margin-bottom: 60px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #20638A;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(32,99,138,0.10);
}
.hero-section p {
  font-size: 1.2rem;
  color: #32506D;
  margin-bottom: 30px;
}

/* Features / Service Grids */
.features-grid, .service-cards, .service-list, .process-steps, .pricing-table, .faq-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.features-grid > div,
.service-cards > div,
.service-list > div,
.process-steps > div,
.pricing-table > div,
.faq-list > div,
.testimonial-list > .testimonial-card {
  flex: 1 1 240px;
  min-width: 250px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(32,99,138,0.06);
  padding: 24px 18px;
  margin-bottom: 20px;
}
.features-grid > div {
  min-width: 210px;
  max-width: 260px;
  background: #E6F2F8;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.features-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}
.service-cards > div {
  background: #fff;
  border: 2.5px solid #6FC06E;
  box-shadow: 0 3px 12px 0 rgba(111,192,110, 0.07);
}
.process-steps > div,
.pricing-table > div {
  border-left: 6px solid #20638A;
  border-radius: 13px;
}
.process-steps img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}

/* CTA SECTION */
.cta-section {
  background: #20638A;
  color: #fff;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
  padding: 48px 20px;
  box-shadow: 0 3px 25px 0 rgba(32,99,138,0.1);
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-section .cta-btn {
  background: #6FC06E;
  color: #20638A !important;
  margin-top: 20px;
  margin-left: 0;
  font-size: 1.13rem;
}
.cta-section .cta-btn:hover,
.cta-section .cta-btn:focus {
  background: #fff;
  color: #20638A !important;
}
.cta-section .contact-short {
  color: #fff;
  margin-top: 24px;
}
.cta-section .contact-short a {
  color: #fff;
  border-bottom: 1.5px dashed #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color .15s;
}
.cta-section .contact-short a:hover {
  color: #6FC06E;
  border-bottom: 1.5px solid #6FC06E;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 64px 20px 36px 20px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px -10px rgba(32,99,138,0.09);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #E6F2F8;
  color: #14324B;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(32,99,138,0.12);
  min-width: 270px;
  margin-bottom: 24px;
  flex: 1 1 320px;
}
.star-rating {
  color: #6FC06E;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.client-name {
  color: #20638A;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #E6F2F8;
  padding: 40px 0 10px 0;
  font-size: 0.97rem;
  color: #14324B;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #20638A;
  font-weight: 700;
  transition: color .19s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #277940;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 10px;
}
.social-links a img {
  height: 28px;
  width: 28px;
  transition: filter .25s;
}
.social-links a:hover img {
  filter: brightness(72%) drop-shadow(0 2px 6px #27794044);
}

/* Cards, Info, FAQ, Lists, Tables */
.text-section {
  margin-bottom: 32px;
}
.text-section ul {
  margin-left: 1.3em;
}
.text-section b {
  font-weight: 800;
}
.compare-features {
  padding: 22px 24px 20px 24px;
  background: #E6F2F8;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(32,99,138,0.10);
  margin-top: 24px;
  margin-bottom: 0;
}
.service-benefits {
  background: #E6F2F8;
  border-radius: 13px;
  padding: 20px 22px;
  margin-top: 24px;
  margin-bottom: 0;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.address-map img {
  height: 26px;
  width: 26px;
}
.contact-details {
  margin-top: 10px;
  margin-bottom: 22px;
}
.contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details img {
  height: 20px;
  width: 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #20638A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 20px 18px 20px;
  box-shadow: 0 -2px 22px 0 rgba(32,99,138,.25);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s cubic-bezier(.39,1.2,.23,1), opacity .28s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  padding: 10px 26px;
  transition: background .14s, color .16s, box-shadow .15s;
  box-shadow: 0 2px 8px 0 rgba(32,99,138,0.10);
  cursor: pointer;
}
.cookie-banner .accept {
  background: #6FC06E;
  color: #14324B;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #277940;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #20638A;
  border: 2px solid #20638A;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #20638A;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #20638A;
  border: 2px dashed #20638A;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #20638A;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  min-width: 100vw;
  min-height: 100vh;
  z-index: 99999;
  background: rgba(32,99,138,0.70);
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 38px 0 rgba(32,99,138,0.15);
  padding: 36px 26px 26px 26px;
  min-width: 300px;
  max-width: 94vw;
}
.cookie-modal h2 {
  color: #20638A;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal .category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #20638A;
}
.cookie-modal .category.essential label {
  color: #6FC06E;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #20638A;
  cursor: pointer;
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  padding: 10px 24px;
  background: #20638A;
  color: #fff;
  transition: background .16s, color .14s;
  cursor: pointer;
}
.cookie-modal button.secondary {
  background: #6FC06E;
  color: #20638A;
}
.cookie-modal button.secondary:hover,
.cookie-modal button.secondary:focus {
  background: #277940;
  color: #fff;
}

/* Animations & Micro-interactions */
.cta-btn,
button,
.mobile-nav a {
  transition: background .17s, color .15s, box-shadow .18s, transform .16s;
}
.cta-btn:active,
button:active {
  transform: scale(.98);
}
.features-grid > div:hover,
.service-cards > div:hover,
.card:hover {
  box-shadow: 0 8px 20px 0 rgba(32,99,138,0.15), 0 0 0 2px #6FC06E44;
  transform: translateY(-2px) scale(1.025);
  transition: box-shadow .19s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0 #20638A22;
  transition: box-shadow .22s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 13px;
    padding-right: 13px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card,
  .testimonial-card,
  .features-grid > div,
  .service-cards > div,
  .process-steps > div {
    min-width: 210px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .hero-section {
    padding-top: 30px;
    padding-bottom: 36px;
    border-radius: 0 0 24px 24px;
  }
  .section,
  .cta-section,
  .testimonials {
    margin-bottom: 36px;
    padding: 28px 7px;
    border-radius: 14px;
  }
  .features-grid, .service-cards, .service-list, .process-steps, .testimonials-list {
    gap: 16px;
  }
  .features-grid > div,
  .service-cards > div,
  .service-list > div,
  .testimonial-card,
  .card {
    min-width: 90vw;
    max-width: 98vw;
  }
  .content-grid {
    gap: 12px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 14px;
    font-size: 1rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .address-map, .contact-details li {
    font-size: .96rem;
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  .cta-section {
    padding: 22px 5px;
  }
  .footer-flex {
    gap: 13px;
  }
  .social-links {
    gap: 8px;
  }
  .section,
  .testimonials {
    padding: 12px 3px;
    margin-bottom: 17px;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
}

/* Accessibility: Focus visible for interactive elements */
a:focus-visible,
button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid #277940;
  outline-offset: 1px;
}

/* Hide cookie banner if already accepted */
body.cookie-accepted .cookie-banner {
  display: none !important;
}
