/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2a2a2a;
  background: #F6F5F1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #143773;
  text-decoration: none;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #25A18E;
  text-decoration: underline;
}
ul, ol {
  list-style-type: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143773;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #167062;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}
.content-wrapper {
  width: 100%;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(20, 55, 115, 0.065);
  outline: none;
}
.btn-primary {
  background: #25A18E;
  color: #fff;
  box-shadow: 0 2px 12px rgba(37, 161, 142, 0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #167062;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #25A18E;
  border: 2px solid #25A18E;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F6F5F1;
  color: #167062;
  border-color: #167062;
  transform: translateY(-2px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(20, 55, 115, 0.045);
  position: sticky;
  top: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 20px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a.logo-link {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #143773;
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li a[aria-current="page"] {
  background: #F6F5F1;
  color: #25A18E;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #143773;
  font-size: 2rem;
  border-radius: 8px;
  border: 2px solid #F6F5F1;
  padding: 4px 12px;
  margin-left: 12px;
  cursor: pointer;
  z-index: 103;
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F5F1;
  color: #167062;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px rgba(20, 55, 115, 0.10);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.32,1.15,.51,1.01);
}
.mobile-menu.mobile-menu-open {
  display: block;
  transform: translateX(0);
  animation: menu-slide-in 0.33s cubic-bezier(.32,1.15,.51,1.01);
}
@keyframes menu-slide-in {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: #fff;
  color: #143773;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1220;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover{ background: #F6F5F1; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 80px;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143773;
  padding: 12px 16px;
  margin-right: 16px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F5F1;
  color: #25A18E;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(0deg, #F6F5F1 70%, #25A18E 120%);
  padding: 64px 20px 56px 20px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 16px rgba(20, 55, 115, 0.025);
  margin-bottom: 48px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.18rem;
  color: #143773;
  margin-bottom: 28px;
}

/* FEATURES SECTION */
.features {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 18px rgba(20, 55, 115, 0.04);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  background: #F6F5F1;
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(20, 55, 115, 0.03);
  padding: 16px 18px;
  color: #167062;
  font-weight: 500;
}
.feature-grid img {
  width: 30px;
  height: 30px;
}

/* CARDS, SERVICES & FAQ */
.card-container, .card-grid, .content-grid, .team-list, .service-grid, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(20, 55, 115, 0.055);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  color: #143773;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 9px 32px rgba(37,161,142,0.13);
  transform: translateY(-6px) scale(1.025);
}
.service-card {
  background: #F6F5F1;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(20,55,115,0.07);
  padding: 28px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  color: #143773;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 270px;
}
.service-grid {
  gap: 24px;
  margin: 25px 0 28px 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 32px 0;
}
.service-list li {
  background: #F6F5F1;
  border-radius: 15px;
  color: #167062;
  font-weight: 500;
  padding: 18px 16px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143773;
}

/* FAQ SECTION */
.faq-list {
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(37,161,142,0.07);
  padding: 20px 20px 16px 20px;
  color: #143773;
  font-size: 1rem;
  transition: box-shadow 0.16s, transform 0.16s;
  margin-bottom: 5px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 5px 20px rgba(37,161,142,0.12);
}
.faq-item h3 {
  color: #25A18E;
  font-size: 1.09rem;
  margin-bottom: 6px;
}

/* TESTIMONIAL CARDS */
.testimonials {
  background: #F6F5F1;
  border-radius: 32px;
  box-shadow: 0 2px 24px rgba(20, 55, 115, 0.03);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  margin-top: 15px;
  min-width: 250px;
  max-width: 600px;
  box-shadow: 0 3px 17px rgba(37,161,142,0.07);
  color: #143773;
  font-size: 1.09rem;
  font-style: italic;
  border-left: 5px solid #25A18E;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card strong {
  font-style: normal;
  color: #167062;
  font-size: 1rem;
  margin-top: 6px;
}

/* CTA SECTION */
.cta-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px rgba(20, 55, 115, 0.05);
  margin-top: 38px;
  text-align: center;
  padding: 42px 18px 42px 18px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #143773;
}

/* TEXT & IMAGE WRAPPING (for About/Team) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  font-size: 1.09rem;
  color: #143773;
  background: transparent;
  border-radius: 14px;
  padding: 0 0 8px 0;
  margin-bottom: 15px;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.team-list .text-section {
  background: #F6F5F1;
  border-radius: 15px;
  padding: 18px 18px;
}

/* PRICING */
.pricing-table {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px rgba(20, 55, 115, 0.07);
}
.pricing-table table {
  width: 100%;
  margin: 18px 0 0 0;
  border-collapse: collapse;
  font-size: 0.99rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #F6F5F1;
}
.pricing-table th {
  background: #F6F5F1;
  color: #143773;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table td {
  color: #143773;
}
.price-notes {
  margin-top: 22px;
}

/* CONTACT INFO */
.contact-info {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(20, 55, 115, 0.04);
  padding: 32px 18px;
  margin-bottom: 28px;
}
.contact-info address {
  font-style: normal;
  color: #143773;
  line-height: 1.7;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info img {
  width: 20px;
  vertical-align: middle;
  margin-right: 9px;
}
.contact-map {
  margin-top: 16px;
  background: #F6F5F1;
  border-radius: 13px;
  padding: 18px;
  color: #167062;
}

/* FOOTER */
footer {
  background: #143773;
  color: #fff;
  padding: 42px 18px 18px 18px;
  border-radius: 32px 32px 0 0;
  margin-top: 72px;
}
.footer-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 32px;
}
.footer-navigation a.logo-link img {
  width: 46px;
  height: 46px;
}
.footer-navigation nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-navigation nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.92;
  border-radius: 9px;
  padding: 5px 16px;
  transition: background 0.13s, color 0.13s;
}
.footer-navigation nav a:hover, .footer-navigation nav a:focus {
  background: #25A18E;
  color: #fff;
  opacity: 1;
}
.footer-contact {
  margin-bottom: 18px;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
  font-size: 1rem;
  line-height: 1.65;
}
.footer-contact a { color: #25A18E; }
.footer-contact a:hover, .footer-contact a:focus { color: #F6F5F1; }
.copyright {
  color: #F6F5F1;
  opacity: 0.92;
  font-size: 0.98rem;
  margin-top: 16px;
}

/* LEGAL SECTIONS */
.legal-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 15px rgba(20, 55, 115, 0.06);
  margin-bottom: 36px;
  padding: 40px 18px;
}
.contact-policy a { color: #25A18E; }
.contact-policy a:hover, .contact-policy a:focus { color: #143773; }

/* Confirmation/Thank you page */
.confirmation-section {
  background: #F6F5F1;
  border-radius: 22px;
  min-height: 240px;
  text-align: center;
  padding: 54px 20px 54px 20px;
}
.confirmation-section h1 { color: #143773; }
.confirmation-section p { color: #167062; font-size: 1.08rem; margin-bottom: 24px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9ed;
  color: #143773;
  box-shadow: 0 -2px 14px rgba(37, 161, 142, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 10px;
  font-size: 1rem;
  z-index: 2000;
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 22px 22px 0 0;
}
.cookie-banner button {
  margin-left: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: #25A18E;
  color: #fff;
  box-shadow: 0 1px 6px rgba(37,161,142,0.11);
}
.cookie-btn.reject {
  background: #F6F5F1;
  color: #167062;
  border: 2px solid #167062;
}
.cookie-btn.settings {
  background: #fff;
  color: #143773;
  border: 2px solid #143773;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #167062;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 55, 115, 0.37);
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.23s;
}
@keyframes fade-in { from { opacity: 0;} to { opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(20,55,115,0.13);
  padding: 38px 26px 24px;
  max-width: 370px;
  min-width: 260px;
  width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #143773;
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-modal .toggle {
  width: 38px;
  height: 22px;
  border-radius: 15px;
  background: #F6F5F1;
  position: relative;
  margin-right: 4px;
  border: 1.5px solid #25A18E;
  transition: background 0.17s, border 0.17s;
}
.cookie-modal .toggle[data-enabled="true"] {
  background: #25A18E;
  border-color: #167062;
}
.cookie-modal .toggle-switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(37,161,142,0.25);
  transition: left 0.18s, background 0.13s;
}
.cookie-modal .toggle[data-enabled="true"] .toggle-switch {
  left: 18px;
  background: #25A18E;
}
.cookie-modal .cookie-legend {
  font-size: 0.97rem;
  color: #143773;
  margin-bottom: 14px;
}
.cookie-modal-actions {
  margin-top: 9px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* FORM (if any form is added in the future, standard) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1.5px solid #F6F5F1;
  background: #fff;
  color: #143773;
  box-shadow: 0 1.5px 6px rgba(20,55,115,0.05);
  margin-bottom: 18px;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid #25A18E;
  box-shadow: 0 2px 12px rgba(37,161,142,0.19);
}

/* GENERAL UTILITY */
.gap-24 { gap: 24px !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .main-nav, .footer-navigation { padding-right: 6px; padding-left: 6px; }
  .feature-grid, .service-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-grid .service-card {
    min-width: unset;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 32px 13px 32px 13px;
    border-radius: 0 0 28px 28px;
  }
  .feature-grid, .content-grid, .service-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .faq-item, .card, .service-card {
    padding: 18px 13px;
    min-width: unset;
  }
  .cta-section, .contact-info, .pricing-table, .legal-section, .about, .testimonials {
    padding: 20px 7px 22px 7px;
    border-radius: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .footer-navigation nav {
    gap: 8px;
    flex-direction: column;
    margin-top: 2px;
  }
  footer, .copyright {
    border-radius: 0;
    margin-top: 32px;
    padding: 28px 10px 8px 10px;
  }
}
@media (max-width: 460px) {
  .container, .content-wrapper {
    padding: 0;
  }
  .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .cta-section h2 { font-size: 1.15rem; }
  .testimonial-card, .faq-item, .card, .service-card { font-size: 0.97rem; }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    margin-left: 11px;
    margin-top: 64px;
    gap: 14px;
  }
}

/* Hide cookie banner/modal on accept (JS handled: add .hide) */
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

/* === VISUAL ENHANCEMENTS === */
::selection { background: #25A18E; color: #fff; }
.btn-primary:active, .btn-secondary:active { transform: scale(0.97); }
.btn-primary::-moz-focus-inner, .btn-secondary::-moz-focus-inner { border: 0; }

/* Consistent Coloring for Accessibility */
section.testimonials .testimonial-card {
  background: #fff;
  color: #143773;
  border-left: 5px solid #25A18E;
}

/* Misc spacing overrides as per pattern */
.section, .about, .testimonials, .faq-section, .faq-list-section, .pricing-table, .cta-section, .contact-info, .legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hide elements visually (utility) */
.sr-only{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
