/* =================== 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,
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 {
  scroll-behavior: smooth;
  background: #FAFBFC;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #FDF6F3 0%, #F5F7FA 100%);
  color: #2D3A4D;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #509B84;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #69bca0;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 24px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
}

/* Typography Scale */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  line-height: 1.18;
  font-weight: 700;
  color: #364358;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 600;
  color: #497176;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 500;
  color: #509B84;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #6BA8A4;
}
p {
  color: #47536b;
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong, b {
  font-weight: 600;
  color: #497176;
}

/* =================== FLEX LAYOUTS =================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(80, 155, 132, 0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(80, 155, 132, 0.20);
  transform: translateY(-3px) scale(1.035);
}
.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;
  margin-bottom: 24px;
  background: #F9FCFA;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(80, 155, 132, 0.09);
  position: relative;
}
.testimonial-card p {
  color: #273143;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #509B84;
  font-weight: 500;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(93, 157, 137, 0.10);
  padding: 30px 20px;
  transition: box-shadow 0.20s, transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 9px 32px 0 rgba(110, 186, 148, 0.11);
  transform: translateY(-3px) scale(1.03);
}

/* =============== HEADER & NAVIGATION =============== */
header {
  background: rgba(249, 250, 255, 0.95);
  box-shadow: 0 2px 10px 0 rgba(80, 155, 132, 0.06);
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 79px;
}
header img {
  height: 42px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2D3A4D;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #e0ebe6;
  color: #509B84;
}
header .btn-primary {
  margin-left: 12px;
}

/* ================= BUTTONS =================== */
.btn-primary {
  background: #509B84;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 13px 34px;
  box-shadow: 0 2px 12px 0 rgba(59, 163, 132, 0.10);
  cursor: pointer;
  transition: background 0.19s, transform 0.14s, box-shadow 0.18s;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #378e6b;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(86, 204, 157, 0.13);
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: #F5F7FA;
  color: #509B84;
  border: 1.5px solid #509B84;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
  outline: none;
  margin-top: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e4edea;
  color: #2D3A4D;
  border-color: #378e6b;
}

/* =============== HERO SECTIONS =============== */
.hero {
  background: linear-gradient(180deg, #FAF8FF 0%, #F5F7FA 100%);
  min-height: 260px;
  padding: 60px 0 48px 0;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 690px;
  margin: 0 auto;
}
.hero h1 {
  color: #3b4563;
}
.hero p {
  color: #4A5A6A;
  font-size: 1.18rem;
  margin-bottom: 22px;
}

/* Features section */
.features {
  background: #F9FCFA;
  border-radius: 18px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.features .feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 6px;
}

/* =============== ABOUT / PROCESS / CARDS =============== */
.about-intro, .about-company, .values, .why-us, .process-overview, .services, .how-we-help, .advantages, .faq, .contact, .cta-banner, .thank-you, .legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(110, 186, 148, 0.05);
}
.value-list, .advantage-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-list li, .advantage-list li {
  display: flex;
  align-items: center;
  background: #F6FAF8;
  border-radius: 10px;
  padding: 10px 18px;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 0;
  color: #497176;
}
.value-list img, .advantage-list img {
  height: 26px; width: 26px;
  margin-right: 8px;
}

/* Reason Cards */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  justify-content: flex-start;
}
.step {
  flex: 1 1 180px;
  background: #e5f2ed;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(80, 155, 132, 0.04);
  padding: 22px 16px;
  text-align: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #346053;
  transition: box-shadow 0.16s, transform 0.13s;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.step img {
  height: 30px;
  width: 30px;
  margin-bottom: 10px;
}
.step:hover {
  box-shadow: 0 4px 18px 0 rgba(80, 155, 132, 0.19);
  transform: translateY(-3px) scale(1.04);
}

/* =============== FAQ ACCORDION =============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F5F7FA;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 5px 0 rgba(80, 155, 132, 0.06);
}
.faq-item h3 {
  font-size: 1.13rem;
  color: #509B84;
  margin-bottom: 6px;
}
.faq-item p {
  margin-bottom: 0;
}

.contact-shortcut {
  background: #E5F2ED;
  border-radius: 10px;
  padding: 15px 20px;
  color: #356258;
}
.contact-shortcut a {
  color: #509B84;
  text-decoration: underline;
  font-weight: 600;
}

/* =============== CONTACT OVERVIEW =============== */
.contact-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-overview > div {
  background: #F8F9F9;
  border-radius: 10px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 230px;
  font-size: 1.06rem;
}
.contact-overview img {
  height: 26px;
  width: 26px;
}
.map-placeholder {
  margin-top: 18px;
  background: #F1F5F6;
  border-radius: 9px;
  padding: 18px 14px;
  color: #4d595f;
}

/* =============== CTA BANNER =============== */
.cta-banner {
  background: linear-gradient(85deg, #E8FAF4 4%, #FAF8F6 89%);
  text-align: center;
  margin-bottom: 0;
  padding: 54px 18px 50px 18px;
}
.cta-banner h2 {
  font-size: 2.15rem;
  color: #2D3A4D;
  font-weight: 700;
}
.cta-banner p {
  font-size: 1.15rem;
}

/* =============== FOOTER =============== */
footer {
  background: #F5F7FA;
  padding: 32px 0 8px 0;
  margin-top: 34px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
footer nav a {
  font-size: 1rem;
  color: #497176;
}
footer nav a:hover {
  color: #2D3A4D;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #375367;
}
.contact-details img {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 19px;
  z-index: 2003;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #509B84;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  box-shadow: 0 4px 16px 0 rgba(93, 157, 137, 0.10);
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #e0ebe6;
  outline: 2px solid #509B84;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252, 255, 253, 0.98);
  z-index: 2300;
  transform: translateX(-110vw);
  transition: transform 0.43s cubic-bezier(.42,.02,.01,.98);
  box-shadow: 0 0 40px 0 rgba(61, 181, 142, .08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  position: relative;
  align-self: flex-end;
  font-size: 2rem;
  color: #509B84;
  margin: 24px 24px 0 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(59, 163, 132, 0.10);
  transition: background 0.12s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #e0ebe6;
  outline: 2px solid #509B84;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  color: #497176;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
  min-width: 100px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #509B84;
  background: #e0ebe6;
}
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
  header .container {
    gap: 10px;
  }
  .footer .container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    height: auto;
    gap: 14px;
  }
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 810px) {
  .steps, .feature-grid, .content-grid, .value-list, .advantage-list, .contact-overview, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 44px 0 32px 0;
  }
  .section {
    padding: 22px 6px;
  }
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 6px;
  }
  .step {
    font-size: 1rem;
    padding: 17px 10px;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 1.4rem;
  }
  .cta-banner h2 {
    font-size: 1.17rem;
  }
  footer img {
    height: 28px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
}
@media (max-width: 480px) {
  .hero, .cta-banner {
    padding: 25px 0 20px 0;
  }
  .section {
    padding: 10px 2px;
  }
  h1 {font-size: 1.24rem;}
  h2 {font-size: 1.1rem;}
}

/* HIDE MOBILE MENU AND TOGGLE ON DESKTOP */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}

/* =============== COOKIE CONSENT BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2500;
  background: #F6FAF8;
  color: #2D3A4D;
  box-shadow: 0 -6px 24px 0 rgba(80,155,132,0.10);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.27s, opacity 0.27s;
  font-size: 1.05rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(38px);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-cookie-settings {
  font-size: 1rem;
  padding: 10px 20px;
  min-width: 120px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
}
.cookie-banner .btn-cookie-settings {
  background: #FFF;
  color: #509B84;
  border: 1px solid #509B84;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: #E8FAF4;
  color: #2D3A4D;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80, 155, 132, 0.15);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  padding: 32px 22px 22px 22px;
  border-radius: 18px;
  max-width: 380px;
  width: 96vw;
  box-shadow: 0 8px 36px 0 rgba(80,155,132,0.15);
  color: #2D3A4D;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  from {transform: scale(0.97) translateY(40px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #509B84;
  width: 21px;
  height: 21px;
  margin-top: 0;
}
.cookie-category .always-on {
  color: #888;
  font-size: .95em;
  margin-left: 8px;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .btn-primary,
.cookie-modal .modal-actions .btn-secondary {
  padding: 10px 18px;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #509B84;
  cursor: pointer;
  padding: 0 5px;
}

/* =============== MISC/MICRO-INTERACTIONS =============== */
::-webkit-scrollbar {
  width: 12px; background: #F7FAF8;
}
::-webkit-scrollbar-thumb {
  background: #E6F2ED;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D9EFE7;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 17px 5px;
    max-width: 96vw;
  }
  .cookie-banner {
    padding: 14px 7px;
    font-size: .97rem;
  }
}

/* =============== SELECTION & FOCUS =============== */
:focus {
  outline: 3px solid #509B84;
  outline-offset: 2px;
}
::selection {
  background: #B7F3CA;
  color: #2D3A4D;
}

/* =============== PRINT FRIENDLY =============== */
@media print {
  body, .container, .content-wrapper, header, nav, footer, main, section {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
