/* CSS RESET & BASE STYLES */
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: #F8F6F1;
  color: #22596B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
ul, ol {
  margin-left: 24px;
}
main {
  flex: 1;
}
a {
  color: #22596B;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #BFC6B6;
}
strong, b {
  font-weight: 700;
}
/* BRAND VARIABLES */
:root {
  --primary: #22596B;
  --secondary: #BFC6B6;
  --accent: #F8F6F1;
  --white: #fff;
  --font-display: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-soft: 0 2px 16px rgba(34,89,107,0.07), 0 1.5px 6px rgba(191,198,182,0.08);
  --shadow-strong: 0 4px 24px rgba(34,89,107,0.14);
  --radius-card: 22px;
  --radius-btn: 100px;
}
@font-face {
  font-family: 'Nunito';
  src: local('Nunito'), local('Nunito-Regular'), url('https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofIMN5FZsaw.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.ttf') format('truetype');
  font-display: swap;
}
/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2e3334;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* SPACING & FLEX LAYOUTS */
.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;
}
/* COMMON CARDS & ELEMENTS */
.card, .feature-item, .testimonial-card, .service-item, .article-teaser, .faq-item, .pricing-table {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .service-item:hover, .article-teaser:hover, .faq-item:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}
/* HEADER & NAVIGATION */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(34,89,107,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header > a img {
  display: block;
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--accent);
  padding: 44px 14px 28px;
  border-top: 2px solid #E8ECE1;
}
footer > a img {
  height: 44px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.86;
  transition: opacity 0.15s;
}
.footer-nav a:hover {
  opacity: 1.0;
}
.footer-contact {
  font-size: 0.98rem;
  color: #49606C;
  margin-top: 5px;
  text-align: center;
}
/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #F8F6F1 85%, #BFC6B6 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 24px rgba(34,89,107,0.10);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 14px;
}
/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: var(--radius-btn);
  border: none;
  outline: none;
  box-shadow: 0 2px 12px rgba(34,89,107,0.07);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #236277;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 18px rgba(34,89,107,0.18);
}
.cta-btn.mini {
  font-size: 0.96rem;
  padding: 9px 28px;
}
/* FEATURES GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features .feature-item {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 280px;
  align-items: flex-start;
  box-sizing: border-box;
  border: 1.5px solid #E8ECE1;
}
.features .feature-item img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #BFC6B6;
  padding: 8px;
  margin-bottom: 7px;
}
.features h2 {
  margin-bottom: 20px;
}
/*.about-preview, .contact-preview omitted for brevity as styles below cover all preview/section patterns*/
/* TESTIMONIAL CARDS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid #E8ECE1;
  padding: 24px 20px;
  min-width: 250px;
  max-width: 370px;
  flex: 1 1 270px;
  justify-content: flex-start;
  flex-direction: column;
  color: #265266;
  font-size: 1rem;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #22596B;
  font-family: var(--font-body);
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 600;
  color: #665E46;
}
.testimonial-card span:first-child {
  color: #F9BD4E;
  letter-spacing: .07em;
  font-size: 1.1em;
}
/* BLOG, FAQ, ARTICLE TEASER */
.article-teaser {
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  background: var(--white);
}
.article-teaser h3 {
  margin-bottom: .6em;
}
.article-teaser a {
  color: var(--primary); font-weight: 500; text-decoration: underline dotted;
  margin-top: 8px;
  transition: color 0.18s;
}
.article-teaser a:hover { color: #24667a; }
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 7px 0 0 0;
}
.category-nav a {
  padding: 8px 18px;
  border-radius: 22px;
  font-family: var(--font-display);
  background: var(--secondary);
  color: var(--primary);
  font-size: .97rem;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
}
.category-nav a:hover, .category-nav a:focus { background: var(--primary); color: var(--white); }
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid #EDF1E1;
  padding: 20px 18px;
  font-size: 1rem;
  color: #285675;
  margin-bottom: 0;
}
.faq-item h3 { font-size: 1.15rem; margin-bottom: 11px; color: var(--primary); }

/* PRICING TABLE STYLES */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #E8ECE1;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-breakdown ul {
  padding-left: 18px;
  margin: 0 0 10px 0;
}
.service-price {
  display: inline-block;
  background: #BFC6B6;
  color: #22596B;
  padding: 7px 18px;
  border-radius: 22px;
  font-size: .98rem;
  margin-top: 7px;
  font-family: var(--font-display);
}

/* LEGAL, INFO, THANK-YOU SECTIONS */
.legal, .info-note, .thank-you {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 40px 20px;
  min-height: 140px;
}
.legal h1, .info-note h2, .thank-you h1 { margin-bottom: 16px; }
.legal h2, .info-note h2 {margin-top: 22px; }

/* MOBILE FIRST: NAVIGATION & MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: #fff;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  border-radius: 15px;
  width: 48px;
  height: 48px;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 2px 7px rgba(34,89,107,0.06);
  transition: background 0.12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(248,246,241,0.96);
  z-index: 99;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.55,.13,.45,.82);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  background: var(--primary);
  color: white;
  font-size: 2.1rem;
  border: none;
  border-radius: 14px;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BFC6B6;
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 34px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: var(--font-display);
  color: var(--primary);
  background: none;
  padding: 12px 3px;
  border-radius: 9px;
  width: 100%;
  margin: 0;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
/* Hide main nav on mobile */
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/* RESPONSIVE FLEX DIRECTION ADJUSTMENTS */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 12px 7vw 12px 10vw;
  }
  .container {
    max-width: 98vw;
    padding: 0;
  }
  .content-wrapper, .about .content-wrapper, .team .content-wrapper, .why-choose-us .content-wrapper {
    flex-direction: column;
    gap: 20px !important;
  }
  .features .feature-grid, .testimonials .content-wrapper, .faq-list, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* SECTION SPACING FIXES ON MOBILE */
@media (max-width: 540px) {
  .section, section {
    padding: 26px 5vw;
    margin-bottom: 30px;
  }
  .hero {
    border-radius: 0 0 17px 17px;
    min-height: 220px;
  }
  .legal, .info-note, .thank-you {
    padding: 18px 6vw;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 20px rgba(34,89,107,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 300;
  padding: 22px 16px 16px 16px;
  gap: 18px;
  animation: slideUpCookieBanner 0.55s cubic-bezier(.46,.07,.47,1.01);
}
@keyframes slideUpCookieBanner {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .banner-text {
  font-size: 1rem;
  margin-bottom: 2px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  outline: none;
  transition: background 0.15s, color 0.14s, box-shadow 0.12s;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(68,92,80,0.03);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 1.8px solid var(--primary);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
  border: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #236277;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fafafa;
  color: #1d2932;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ccd4c5;
}

/* COOKIE MODAL OVERLAY & CONTENT */
.cookie-modal-overlay {
  position: fixed;
  z-index: 400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(38,58,28,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .5s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  padding: 35px 28px;
  max-width: 97vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  font-size: 1.04rem;
}
.cookie-category .toggle-switch {
  width: 40px;
  height: 21px;
  border-radius: 22px;
  background: #E8ECE1;
  position: relative;
  transition: background 0.19s;
}
.cookie-category .toggle-switch.enabled {
  background: var(--primary);
}
.toggle-switch input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.toggle-indicator {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  background: white;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 2px 6px rgba(44,58,14,0.07);
}
.toggle-switch.enabled .toggle-indicator {
  transform: translateX(19px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 90px; font-size: 1rem;
}
/* MODAL CLOSE BUTTON */
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 21px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover { background: var(--primary); color: #fff; }
.cookie-modal .cookie-category[aria-disabled="true"] {
  opacity: 0.75;
  pointer-events: none;
}

/* UTILITY */
@media (max-width: 480px) {
  .cookie-modal {
    padding: 21px 7vw;
    width: 95vw;
    min-width: 0;
  }
}
/* FORM ELEMENTS DEFAULTS FOR CONTACT, ETC. */
input, textarea, select {
  border: 1.5px solid #BFC6B6;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
  box-sizing: border-box;
  background: #F8F6F1;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  background: #fff;
}
button, input[type="submit"] {
  cursor: pointer;
}

/* MISC STYLING FOR CLARITY & ACCESSIBLE CONTRAST */
h1, h2, h3, h4, h5 {
  letter-spacing: 0.011em;
}
ul li, ol li {
  padding-left: 3px;
  margin-bottom: 6px;
}
hr {
  margin: 36px 0;
  border: none;
  height: 2px;
  background: #E8ECE1;
  width: 100%;
  border-radius: 6px;
}
/* --- Scrollbar style for desktop --- */
@media (hover: hover) {
  ::-webkit-scrollbar {
    width: 10px;
    background: #F8F6F1;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFC6B6;
    border-radius: 19px;
  }
}
::-webkit-input-placeholder { color: #87979A; }
::-moz-placeholder { color: #87979A; }
:-ms-input-placeholder { color: #87979A; }
::placeholder { color: #87979A; }

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus, input:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #BFC6B6;
  outline-offset: 2px;
}

/* Z-INDEX FOR MOBILE MENU & COOKIE BANNER */
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 300; }
.cookie-modal-overlay { z-index: 400; }

/* ENFORCE FLEXBOX, NO GRID/COLUMNS (do not remove) */
/* All layouts use display: flex and flex-wrap; no grid or columns used */