/* --- CSS RESET & BASE --- */
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, 
main, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  color: #1b2d36;
  background: #fcfcfc;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; height: auto; }
a { color: #245277; text-decoration: none; transition: color .2s; }
a:hover, a:focus { text-decoration: underline; color: #60A27B; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #245277;
}
h1 { font-size: 2.3rem; margin-bottom: 18px; }
h2 { font-size: 1.64rem; margin-bottom: 14px; }
h3 { font-size: 1.16rem; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
strong { font-weight: 600; }

/* --- CONTAINERS & MAIN LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #EFF1F0;
  box-shadow: 0 1px 8px rgba(36,82,119,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
}
.nav-container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo-link img {
  height: 42px; width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #245277;
  padding: 4px 0;
  position: relative;
  transition: color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #60A27B;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #60A27B;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(96,162,123, 0.08);
  cursor: pointer;
  outline: none;
  transition: background .2s, box-shadow .2s, letter-spacing .16s;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px rgba(36,82,119,0.03);
  white-space: nowrap;
}
.cta-button:hover, .cta-button:focus {
  background: #245277;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px 0 rgba(36,82,119,0.06);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  color: #245277;
  cursor: pointer;
  margin-left: auto;
  z-index: 32;
  padding: 6px 18px 6px 6px;
  transition: color .2s;
}
.mobile-menu-toggle:focus { outline: 2px solid #245277; }
.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: #fff;
  z-index: 31;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 16px 48px 0 rgba(36,82,119,0.17);
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.63,.09,.39,.94);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  font-size: 2.2rem;
  color: #245277;
  margin-left: auto;
  margin-bottom: 32px;
  cursor: pointer;
  z-index: 33;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #245277;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2E9D8;
  color: #60A27B;
  text-decoration: none;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & PAGE SECTION STYLES --- */
.hero {
  background: #F2E9D8;
  border-radius: 0 0 32px 32px;
  min-height: 320px;
  padding: 40px 0 30px 0;
  margin-bottom: 60px;
}
.hero h1 {
  color: #245277;
  font-size: 2.6rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.16rem;
  color: #294043;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  max-width: 680px;
}
/* Section / Card Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 8px 0 rgba(36,82,119,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  background: #fcfcfc;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(36,82,119,0.06);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow .19s, transform .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 16px rgba(36,82,119,0.07);
  transform: translateY(-4px) scale(1.019);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- FEATURES --- */
.features, .features-highlights {
  margin-bottom: 60px;
  padding: 0;
  background: none;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 190px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(96,162,123,0.04);
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .2s, transform .21s;
  font-size: 1rem;
  color: #294043;
}
.feature-grid li img {
  height: 40px; width: 40px;
  margin-bottom: 6px;
}
.feature-grid li h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
}
.feature-grid li strong {
  color: #60A27B;
}
.feature-grid li:hover {
  box-shadow: 0 4px 18px rgba(96,162,123,0.10), 0 1.5px 8px rgba(36,82,119,0.01);
  transform: translateY(-2px) scale(1.023);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature-grid li {
    padding: 20px 12px 16px 15px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
  }
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
}
.service-list li {
  background: #F6F9F7;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(36,82,119,0.038);
  flex: 1 1 220px;
  min-width: 180px;
  padding: 25px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .18s;
}
.service-list li h3 {
  color: #245277;
}
.service-list li img { height: 36px; margin-bottom: 4px; }
.service-list li strong { color: #60A27B; }
.service-list li:hover {
  box-shadow: 0 6px 18px rgba(36,82,119,0.066);
}
@media (max-width: 700px) {
  .service-list { flex-direction: column; gap: 16px; }
  .service-list li { width: 100%; min-width: 0; }
}

/* --- CHECKLIST BENEFITS --- */
.checklist-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.checklist-benefits li {
  background: #fff;
  border: 1px solid #eff4f1;
  border-radius: 10px;
  padding: 9px 18px 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294043;
  font-size: 1rem;
}
.checklist-benefits li img { height: 20px; }
@media (max-width: 680px) {
  .checklist-benefits { flex-direction: column; gap: 9px; }
  .checklist-benefits li { width: 100%; }
}

/* --- TESTIMONIALS --- */
.testimonials { background: #F2E9D8; border-radius: 16px; }
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 13px;
  padding: 20px 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px 0 rgba(36,82,119,0.08);
}
.testimonial-content {
  display: flex; flex-direction: column;
  gap: 7px;
  color: #283C45;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #2E3B40;
  margin-bottom: 4px;
}
.testimonial-author {
  color: #245277;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
  }
}

/* --- ABOUT & TEAM --- */
.about-details ul, .team ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}
.team ul li {
  background: #F6F9F7;
  border-radius: 12px;
  padding: 13px 17px;
  font-size: 1.08rem;
  color: #245277;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.team ul strong { color: #245277; }
.team ul span { color: #294043; font-family: 'Roboto', Arial, sans-serif; font-weight: 400; font-size: 15px; }

/* --- BLOG SECTIONS --- */
.categories-filter {
  display: flex;
  gap: 12px;
  margin: 18px 0 24px 0;
  flex-wrap: wrap;
}
.categories-filter a {
  color: #245277;
  background: #EFF1F0;
  border-radius: 9px;
  padding: 6px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: background .15s, color .16s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #60A27B;
  color: #fff;
}
.blog-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teaser-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 6px rgba(96,162,123,0.10);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
  position: relative;
}
.blog-teaser-list h3 { color: #245277; font-size: 1.1rem; margin-bottom: 7px; }
.cta-link {
  color: #60A27B;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  transition: color .17s;
}
.cta-link:hover, .cta-link:focus {
  color: #245277;
}
@media (max-width: 700px) {
  .blog-teaser-list { flex-direction: column; gap: 13px; }
}

/* --- CONTACT SECTION --- */
.contact-details .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}
.contact-details .text-section, .contact-details .location-map {
  flex: 1 1 270px;
  background: #F2E9D8;
  border-radius: 12px;
  padding: 20px 16px;
  min-width: 0;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #245277;
}
.contact-details img { height: 20px; margin-right: 2px; }
@media (max-width: 850px) {
  .contact-details .content-wrapper { flex-direction: column; gap: 14px; }
  .contact-details .text-section, .contact-details .location-map { width: 100%; }
}

/* --- LEGAL --- */
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 7px rgba(36,82,119,0.04);
}
.text-section p, .text-section ul, .text-section h3 {
  margin-bottom: 14px;
}
.text-section ul {
  padding-left: 18px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .legal-content { padding: 20px 6px; }
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  background: #F2E9D8;
  margin-bottom: 70px;
  border-radius: 18px;
  padding: 50px 20px;
  box-shadow: 0 2px 10px rgba(36,82,119,0.03);
}
.thank-you-section h1, .thank-you-section h2 { color: #245277; }
.thank-you-section ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- FOOTER --- */
footer {
  background: #245277;
  color: #fff;
  font-size: 15px;
  padding: 32px 0 16px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 40px;
}
.footer-container {
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  justify-content: space-between;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-main img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  opacity: 0.88;
  transition: opacity .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  color: #fff;
  line-height: 1.6;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  word-break: break-word;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 750px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 20px 0 rgba(36,82,119,0.07);
  padding: 22px 18px 16px 18px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  transition: transform .34s cubic-bezier(.83,.04,.29,1.02);
  transform: translateY(0);
  font-size: 16px;
  color: #245277;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  color: #245277;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  background: #EFF1F0;
  border: none;
  color: #245277;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(36,82,119,0.03);
  transition: background .15s, color .15s;
}
.cookie-banner .accept {
  background: #60A27B;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #245277;
}
.cookie-banner .reject {
  background: #fff;
  border: 1.5px solid #245277;
  color: #245277;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F2E9D8;
}
.cookie-banner .settings {
  background: #EFF1F0;
  color: #245277;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F2E9D8; color:#245277;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 15px 4px 11px 7px;
    font-size: 15px;
  }
  .cookie-banner-buttons { gap: 7px; }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background: rgba(36,82,119,0.25);
  z-index: 1031;
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(36,82,119,0.20);
  max-width: 390px;
  width: 97vw;
  padding: 32px 24px 22px 24px;
  color: #294043;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: fadeInUp .37s cubic-bezier(.43,.08,.34,1.0) 1;
}
@keyframes fadeInUp {
  0% {transform: translateY(32px) scale(.98); opacity: 0;}
  85% {transform: translateY(-5px) scale(1.02); opacity: 1;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 17px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #245277;
  cursor: pointer;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  color: #245277;
  margin-bottom: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #EFF1F0;
}
.cookie-category:last-child {
  border: none;
}
.cookie-category label {
  font-size: 15px;
  color: #294043;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  accent-color: #60A27B;
  width: 24px;
  height: 24px;
  outline: none;
}
.cookie-category .always-on {
  color: #245277;
  font-size: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal button {
  border: none;
  border-radius: 20px;
  padding: 9px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-modal .accept {
  background: #60A27B;
  color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus { background: #245277; }
.cookie-modal .cancel {
  background: #EFF1F0;
  color: #245277;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus { background: #F2E9D8; }

/* --- SUBTLE ANIMATIONS & MICRO-INTERACTIONS --- */
.button, .cta-button, .footer-nav a, .main-nav a, .mobile-nav a,
.cta-link, .cookie-banner button, .cookie-modal button {
  transition: background .15s, color .16s, transform .2s;
}
.cta-button:active, .cookie-banner button:active, .cookie-modal button:active, .main-nav a:active, .footer-nav a:active {
  transform: scale(0.97);
}
.card:active, .feature-grid li:active, .service-list li:active {
  transform: scale(0.98);
}

/* --- SECTIONS / SPACING --- */
section {
  margin-bottom: 60px;
  padding: 25px 0;
}
@media (max-width: 850px) {
  section { margin-bottom: 46px; }
}
@media (max-width: 600px) {
  section { padding: 13px 0; margin-bottom: 35px; }
}

/* --- TYPOGRAPHY & COLORS --- */
::selection { background: #60A27B1A; }

body, button, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.235rem; }
}

/* --- FORMS (for contact, request, etc.; generic style) --- */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #EFF1F0;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 13px;
  background: #fff;
  transition: border .17s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border: 1.8px solid #60A27B;
  background: #F6F9F7;
}
label { font-weight: 500; color: #245277; }
button:active { opacity: .94; }

/* --- MISC --- */
::-webkit-scrollbar { width: 12px; background: #EFF1F0; }
::-webkit-scrollbar-thumb { background: #F2E9D8; border-radius: 7px; }

/* --- RESPONSIVE FLEX LAYOUTS --- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 700px) {
  .content-grid, .card-container, .features, .footer-container { flex-direction: column; gap: 16px !important; }
}
@media (max-width: 500px) {
  body { font-size: 15px; }
  h1 { font-size: 1.44rem; }
  .cta-button { font-size: 15.5px; padding: 11px 20px; }
}
