/* RESET & NORMALIZE */
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 {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #FAFAFA;
  color: #151515;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol { list-style: none; }
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #151515;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.14; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.18; }
h3 { font-size: 1.375rem; margin-bottom: 16px; line-height: 1.24; }
h4 { font-size: 1.125rem; }
p, li, blockquote, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #222;
}
strong {
  font-weight: bold;
  color: #101010;
}
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 24px;
}

/* COLOR PALETTE */
:root {
  --color-bg: #FAFAFA;
  --color-fg: #181818;
  --color-bold: #151515;
  --color-primary: #14327A;
  --color-secondary: #6CB531;
  --color-accent: #F4F7FB;
  --color-card-bg: #fff;
  --color-border: #E6E6E6;
  --color-muted: #999;
  --color-light: #F9F9F9;
  --color-btn-bg: #151515;
  --color-btn-text: #fff;
  --color-btn-hover-bg: #14327A;
  --color-text-on-primary: #fff;
  --shadow-card: 0 2px 12px rgba(20,30,40,0.07);
  --shadow-hover: 0 6px 20px rgba(20,30,40,0.11);
}

/* LAYOUT: Container, Sections, Wrappers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 240px;
  max-width: 100%;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 6px rgba(20,20,30,0.02);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
header a img {
  height: 44px;
  width: auto;
  vertical-align: middle;
  display: block;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
nav a {
  color: #222;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
nav a:hover, nav a:focus {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}
.cta-btn {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 28px;
  transition: background 0.18s, transform 0.18s;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(20,30,40,0.06);
  border: none;
  outline: none;
  display: inline-block;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-btn-hover-bg);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: var(--shadow-hover);
}

/* --- BURGER MENU (mobile) --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 2.2rem;
  border-radius: 7px;
  padding: 4px 14px 2px 8px;
  margin-left: auto;
  z-index: 32;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 24px rgba(30,30,40,0.08);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.175,1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 38px 32px 24px 24px;
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  color: #111;
  font-size: 2.25rem;
  border-radius: 5px;
  z-index: 100;
  padding: 2px 8px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}
.mobile-nav a {
  color: #181818;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-primary);
  color: #fff;
  padding-left: 10px;
  transition: background 0.22s, color 0.22s, padding-left 0.16s;
}

/* Hide Desktop Nav on Mobile */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO / SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.hero, .hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-primary);
  color: #fff;
  border-radius: 32px;
  margin-top: 24px;
  padding: 60px 28px 44px 28px;
  box-shadow: 0 8px 32px rgba(20,30,50,0.13);
}
.hero h1, .hero-section h1 {
  color: #fff;
}

/* FEATURES & LISTS */
.features-list, .feature-icons, .services-list, .highlights-list, .quick-info-list, .value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.features-list li, .feature-icons li, .services-list li, .highlights-list li, .quick-info-list li, .value-props li {
  background: var(--color-accent);
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(20,30,40,0.04);
  padding: 20px 20px 20px 18px;
  display: flex;
  align-items: center;
  flex: 1 1 260px;
  gap: 18px;
  min-width: 200px;
  font-size: 1rem;
  margin-bottom: 0;
}
.features-list img, .services-list img, .feature-icons img, .quick-info-list img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  margin-right: 8px;
}
.value-props {
  flex-direction: column;
  gap: 12px;
}
.value-props li {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  font-size: 1rem;
  color: #222;
}

/* CARDS (for services, testimonials, etc.) */
.service-detail-block {
  background: var(--color-card-bg);
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 26px 28px 20px;
  transition: box-shadow 0.22s;
}
.service-detail-block img {
  height: 46px; width: 46px; margin-bottom: 12px;
}
.service-detail-block h2 {
  font-size: 1.4rem;
  margin-bottom: 0.2em;
  color: var(--color-primary);
  font-weight: 700;
}
.service-detail-block span {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}
.service-detail-block:hover {
  box-shadow: var(--shadow-hover);
}

@media (min-width: 700px) {
  .service-detail-block {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
    padding: 32px 42px 28px 40px;
  }
  .service-detail-block img {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-detail-block h2 {
    margin-top: 0;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 22px 26px;
  min-width: 240px;
  flex: 1 1 280px;
  max-width: 370px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  transition: box-shadow 0.22s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.59;
  color: #141414;
  margin-bottom: 14px;
  quotes: '“' '”';
  position: relative;
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #bbb;
  font-size: 2.2em;
  vertical-align: -0.2em;
  margin-right: .2em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-details {
  font-size: 0.97em;
  color: #555;
  font-style: italic;
  text-align: right;
  width: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-left: 4px solid var(--color-secondary);
}

/* CTA / Call-to-Action Blocks */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 16px;
  padding: 36px 24px 28px 24px;
  margin-top: 10px;
  box-shadow: 0 8px 36px rgba(20,25,40,0.12);
}
.cta-block p {
  color: #fff;
  margin: 0;
  font-size: 1.045rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cta-block .cta-btn {
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: none;
}
.cta-block .cta-btn:hover {
  background: #163bb0 !important;
  color: #fff;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 26px 22px 18px 22px;
  margin-bottom: 8px;
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

/* TABLES (prices etc) */
.price-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--shadow-card);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.price-table th, .price-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: 1rem;
  color: #1a1a1a;
}
.price-table th {
  background: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #151515;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* TEXT SECTIONS / LEGAL TEXTS */
.text-section, .legal-text {
  margin-bottom: 21px;
  font-size: 1rem;
  color: #222;
}
.legal-text ul {
  margin-top: 18px;
  margin-left: 18px;
  margin-bottom: 0;
}
.legal-text li {
  margin-bottom: 10px;
  list-style: disc;
}
.legal-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.legal-text a:hover {
  text-decoration: none;
  color: var(--color-secondary);
}

/* FOOTER */
footer {
  background: #181818;
  color: #fff;
  padding: 38px 0 24px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.16s, color 0.16s;
  border-radius: 6px;
  padding: 6px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
  background: rgba(255,255,255,0.05);
}
.footer-info {
  color: #d6d6d6;
  background-color: #E6E6E6;
  font-size: 0.96em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #151515;
  color: #fff;
  padding: 18px 16px 22px 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-shadow: 0 -6px 32px rgba(30,30,40,0.13);
  align-items: center;
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner-content {
  font-size: 1.04em;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  margin: 0 3px;
  box-shadow: 0 2px 6px rgba(20,40,60,0.06);
  transition: background 0.15s, color 0.17s, box-shadow 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 7px 18px rgba(20,40,60,0.13);
}
.cookie-btn.outline {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.outline:hover, .cookie-btn.outline:focus {
  background: #fff;
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(.77,0,.175,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-hover);
  padding: 38px 30px 30px 36px;
  min-width: 320px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif; 
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #1a1a1a;
  background: none;
  border-radius: 5px;
  font-size: 1.8rem;
  padding: 0 6px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eaeaea;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.065rem;
}
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 44px; height: 24px;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 24px;
  background: #e4e4e4;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: var(--color-secondary);
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 9px rgba(70,100,35,0.07);
  transition: left 0.19s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider:before { left: 22px; }
.cookie-category [data-essential] {
  color: #175788;
  font-weight: 700;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
  }
  header .container { height: 64px; }
}
@media (max-width: 860px) {
  .card-container, .content-grid, .features-list, .feature-icons, .services-list, .testimonials {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .cta-block {
    padding: 25px 10px 18px 10px;
  }
}
@media (max-width: 768px) {
  body{ font-size: 15px; }
  h1{font-size:2.05rem;margin-bottom:19px}
  h2{font-size:1.4rem;margin-bottom:14px}
  .section {padding:24px 8px;margin-bottom:35px}
  .testimonial-card,
  .service-detail-block,
  .faq-item,
  .card {
    padding: 18px 10px 13px 12px;
    min-width: 0;
  }
  .content-wrapper {gap:11px;}
  .testimonials, .features-list, .services-list, .feature-icons, .content-grid, .card-container {
    gap: 13px;
  }
  .cta-block {
    padding: 15px 7px 13px 7px;
  }
}
@media (max-width: 600px) {
  .container {padding-left:6px;padding-right:6px}
}
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.02rem; }
  .testimonial-card, .service-detail-block, .faq-item, .card {
    padding: 10px 4px 9px 6px;
    font-size: 0.98rem;
  }
  .footer-info, .footer-nav { font-size: 0.92em; }
}

/* --- GENERIC ELEMENTS & STATES --- */
::-webkit-input-placeholder { color: #a9a9a9; opacity:1; }
::-moz-placeholder { color: #a9a9a9; opacity:1; }
:-ms-input-placeholder { color: #a9a9a9; opacity:1; }
::placeholder { color: #aaa; opacity:1; }
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset:2px;
}
hr {
  border: none;
  border-bottom: 1.5px solid var(--color-border);
  margin: 22px 0;
}

/* MISCELLANEOUS STYLES */
.team-profiles {
  background: var(--color-light);
  padding: 17px 22px 13px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(100,100,120,0.04);
  font-size: 1rem;
  margin-bottom: 0;
}
.team-profiles ul {margin-top: 10px;gap: 0;}
.team-profiles li {margin-bottom: 7px;}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-bottom: 20px;
}
.contact-details .text-section {
  background: var(--color-accent);
  border-radius: 8px;
  padding: 13px 12px 10px 13px;
  flex: 1 1 130px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.before-after-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.highlight-cases {
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px 14px 12px;
  box-shadow: 0 1px 8px rgba(80,90,100,.06);
  font-size: 1rem;
  margin-bottom: 6px;
}

/* BUTTONS & LINKS */
button, .cta-btn, .cookie-btn {
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  border: none;
}
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.18s;
}
a:hover {
  color: var(--color-secondary);
}

/* MICRO-INTERACTIONS */
.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, transform 0.17s, box-shadow 0.15s;
}
.cta-btn:active {
  transform: scale(0.98);
}

/* ACCESSIBILITY IMPROVEMENTS */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
