/* === CSS 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2F5F4;
  color: #204262;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
}
strong {
  font-weight: 700;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* === BRAND COLORS AND VARIABLES === */
:root {
  --color-primary: #204262;
  --color-secondary: #4AA07A;
  --color-accent: #F2F5F4;
  --color-white: #fff;
  --color-dark: #204262;
  --color-gray: #e6ecf1;
  --color-danger: #d14242;
  --shadow-card: 0 4px 18px 0 rgba(32,66,98,0.10);
  --radius: 14px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
p, ul li, ol li, span, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.62;
  margin-bottom: 0.5em;
}
/* Visual subhead */
.hero-section span, .hero-section p, .content-wrapper span, .content-wrapper p {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

/* === LAYOUT CONTAINER & SECTION === */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--color-accent);
  border-bottom: 2.5px solid var(--color-secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 2px 18px 0 rgba(32,66,98,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 60px;
  flex-wrap: wrap;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  margin-left: auto;
  box-shadow: var(--shadow-card);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.19s, transform 0.14s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(32,66,98,0.14);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  border: none;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, color 0.18s;
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 6px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 1100;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 24px 24px 28px;
  box-shadow: 0 8px 42px rgba(32,66,98,0.10);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,.02,.35,1), opacity 0.3s;
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 999999;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-accent);
  border-radius: 7px;
  padding: 15px 8px 15px 14px;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
/* == Responsive header navigation == */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 1024px) {
  .btn-primary {
    display: none;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: nowrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 56px;
  }
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(90deg, var(--color-accent) 70%, #e6ecf1 100%);
  border-radius: var(--radius);
  margin-top: 16px;
  margin-bottom: 54px;
  min-height: 180px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 13px;
}
.hero-section p {
  font-size: 1.22rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}
.hero-section span {
  color: var(--color-secondary);
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 120px;
    margin-bottom: 34px;
    padding: 0 0 0 0;
  }
  .hero-section .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-section .content-wrapper h1 {
    font-size: 1.6rem;
    margin-bottom: 7px;
  }
}

/* === FEATURES === */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  margin-top: 10px;
  width: 100%;
}
.features-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 20px 18px 20px;
  min-width: 230px;
  flex: 1 1 220px;
  max-width: 280px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.features-list li:hover, .features-list li:focus-within {
  box-shadow: 0 10px 32px 0 rgba(76,130,116,.13);
  transform: translateY(-5px) scale(1.045);
}
.features-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.features-list strong {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3px;
}
.features-list p {
  font-size: 1.01rem;
  color: var(--color-dark);
}
@media (max-width: 900px) {
  .features-list {
    gap: 18px;
  }
  .features-list li {
    min-width: 170px;
    max-width: 99%;
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .features-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* === SERVICES === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
}
.service-list li {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 210px;
  flex: 1 1 180px;
  max-width: 275px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.service-list li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.service-list li span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.01rem;
}
.service-list li p {
  color: var(--color-dark);
  font-size: 1rem;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 34px 0 rgba(32,66,98,0.13);
  transform: translateY(-4px) scale(1.042);
}
@media (max-width:800px) {
  .service-list {
    gap: 18px;
  }
  .service-list li {
    padding: 14px;
  }
}
@media (max-width: 600px) {
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
}
.btn-secondary {
  margin-top: 19px;
}

/* === CARD / FLEX CONTAINERS (for use as required) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-width: 220px;
  min-height: 90px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(76,130,116,.12);
  transform: translateY(-4px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === STEPS/OL - for / step-list and process.html === */
.step-list, .process-steps-section ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  counter-reset: step;
}
.step-list li, .process-steps-section ol li {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  font-size: 1rem;
  color: var(--color-dark);
  min-width: 120px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
  transition: box-shadow 0.15s, transform 0.13s;
}
.step-list li:hover,
.process-steps-section ol li:hover {
  box-shadow: 0 8px 22px 0 rgba(76,130,116,.13);
  transform: translateY(-2px) scale(1.035);
}
@media (max-width: 700px) {
  .step-list, .process-steps-section ol {
    flex-direction: column;
    gap: 16px;
  }
}

/* === TESTIMONIALS === */
.testimonials-section {
  margin-bottom: 60px;
  padding: 0 20px 40px 20px;
}
.testimonials-section .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 20px 32px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  color: var(--color-dark);
  margin-bottom: 20px;
  min-height: 58px;
  position: relative;
  width: 100%;
  transition: box-shadow 0.12s, transform 0.11s;
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.06rem;
  font-weight: 600;
  margin-right: 18px;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(76,130,116,0.14);
  transform: translateY(-2px) scale(1.021);
}

/* === FOOTER === */
footer {
  background: var(--color-accent);
  border-top: 2.5px solid var(--color-secondary);
  box-shadow: 0 -2px 14px 0 rgba(32,66,98,0.06);
  margin-top: 48px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 38px;
  padding-bottom: 32px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1rem;
  transition: color 0.18s;
  padding: 6px 13px;
  border-radius: 8px;
}
.footer-menu a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.footer-contact {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-copy {
  font-size: 0.94rem;
  color: #6b818e;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 768px) {
  footer .container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 11px;
  }
  .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.98rem;
  }
}

/* === BLOG LIST CARD === */
.blog-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 6px;
}
.blog-post {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 18px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.blog-post h3 {
  font-size: 1.14rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-post p {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.blog-post a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 1px;
  transition: color 0.15s;
}
.blog-post a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.blog-post:hover, .blog-post:focus-within {
  box-shadow: 0 8px 28px 0 rgba(76,130,116,0.12);
  transform: translateY(-4px) scale(1.033);
}
@media (max-width: 700px) {
  .blog-list-grid {
    flex-direction: column;
    gap: 17px;
  }
}

/* === BLOG CATEGORIES === */
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-categories li {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* === NEWSLETTER FORM === */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 9px;
}
.newsletter-form input[type='email'] {
  border: 1.8px solid var(--color-primary);
  border-radius: 7px;
  padding: 12px 12px;
  font-size: 1rem;
  width: 200px;
  transition: border 0.13s;
  background: var(--color-white);
}
.newsletter-form input[type='email']:focus {
  border-color: var(--color-secondary);
}
.newsletter-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 6px;
  }
  .newsletter-form input[type='email'] {
    width: 100%;
    min-width: 95px;
  }
}

/* === FAQ / ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px 20px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0px;
  position: relative;
  transition: box-shadow 0.13s, transform 0.12s;
}
.faq-item strong {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 1px;
}
.faq-item p {
  color: var(--color-dark);
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(76,130,116,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* === LEGAL / TEXT-ONLY SECTIONS === */
.legal-section .text-section, .about-section .text-section {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 28px 19px 28px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section h1, .about-section h1 
{ font-size: 2.14rem; margin-bottom: 16px; }
.legal-section h2, .about-section h2 
{ font-size: 1.28rem; margin-bottom: 10px; color: var(--color-secondary); }

/* === TEAM SECTION === */
.team-section .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  width: 100%;
}
.team-member {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 19px 18px 19px 20px;
  min-width: 180px;
  flex: 1 1 160px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  position: relative;
  transition: box-shadow 0.13s, transform 0.12s;
}
.team-member strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.12rem;
}
.team-member span {
  color: var(--color-secondary);
  font-size: 0.97rem;
}
.team-member p {
  color: var(--color-dark);
  font-size: 0.96rem;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 7px 24px 0 rgba(76,130,116,0.12);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 800px) {
  .team-section .team-list {
    flex-direction: column;
    gap: 13px;
  }
}

/* === COMPARISON TABLE === */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
table {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  border: none;
  margin-bottom: 0;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 15px 10px;
  font-size: 1rem;
  font-weight: 700;
}
tbody td {
  padding: 13px 10px;
  border-top: 2px solid var(--color-gray);
  color: var(--color-dark);
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
tbody tr:nth-child(even) td {
  background: #f8fafc;
}
tbody tr {
  transition: background 0.13s;
}
tbody tr:hover td {
  background: #e9f3f1;
}

/* === CTA BUTTONS (thank-you page) === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 0;
}

/* === CONTACT SECTIONS === */
.contact-info-section address,
.contact-info-brief ul {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px 22px 16px 22px;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 18px;
}
.contact-info-brief ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
}

.static-map {
  background: #e4ece7;
  border-radius: 9px;
  padding: 19px 22px;
  color: var(--color-primary);
  margin: 6px 0;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === MISC - small style for modal overlays === */
.overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,66,98,0.23);
  z-index: 1102;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-white);
  width: 100vw;
  z-index: 1201;
  box-shadow: 0 -6px 32px 0 rgba(32,66,98,0.09);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 12px 18px 12px;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: banner-in 0.6s cubic-bezier(.33,1.23,.6,1) 1;
}
@keyframes banner-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  color: var(--color-white);
  flex: 1 1 300px;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 20px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
  box-shadow: none;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #379168;
}
.cookie-banner .reject {
  background: var(--color-danger);
  color: var(--color-white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #b12626;
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-white);
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 16px 6px 16px 6px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* == COOKIE MODAL == */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 66, 98, 0.34);
  z-index: 1230;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.28s cubic-bezier(.55,1.15,.75,1) 1;
}
@keyframes modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px 0 rgba(32,66,98,0.20);
  padding: 36px 28px 28px 28px;
  max-width: 390px;
  width: 95vw;
  font-size: 1rem;
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.28rem;
  margin-bottom: 18px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}
.cookie-toggle {
  width: 46px;
  height: 28px;
  background: var(--color-gray);
  border-radius: 14px;
  position: relative;
  margin-left: 2px;
  transition: background 0.15s;
  flex-shrink: 0;
  border: 1.5px solid #ccc;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(.59,.23,.44,1), background 0.13s;
}
.cookie-toggle input:checked + span {
  left: 21px;
  background: var(--color-primary);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: var(--color-danger);
  color: var(--color-white);
  padding: 8px 17px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #a12020;
}

/* === GEOMETRIC/STRUCTURED ACCENTS & VISUALS === */
/* Underline using triangle for section titles */
h2 {
  position: relative;
  padding-bottom: 4px;
}
h2:after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 38px;
  height: 8px;
  background: linear-gradient(90deg, var(--color-secondary) 20%, transparent 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Add geometric accent (left bar) to important cards */
.card, .service-card, .team-member, .testimonial-card {
  border-left: 6px solid var(--color-secondary);
}
@media (max-width:600px) {
  .card, .service-card, .team-member, .testimonial-card {
    border-left: 4px solid var(--color-secondary);
  }
}

/* === TRANSITIONS === */
*, *:before, *:after {
  transition: background 0.13s, color 0.13s, box-shadow 0.15s, border 0.13s;
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 900px) {
  .container { max-width: 95vw; padding: 0 10px; }
  .content-wrapper {
    padding: 0;
    gap: 11px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 700px) {
  .container { padding: 0 5px; }
  .section, section {
    margin-bottom: 34px;
    padding: 28px 7px 28px 7px;
  }
  .content-wrapper { gap: 6px; }
}

/* === VISUAL HIERARCHY & UTILITIES === */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* === GEOMETRIC ANGULAR FONT OVERRIDES === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* === SELECTION === */
::selection {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* === MISC === */
::-webkit-input-placeholder { color: #6b818e; }
::-moz-placeholder { color: #6b818e; }
:-ms-input-placeholder { color: #6b818e; }
::placeholder { color: #6b818e; opacity: 1; }

/* === A11Y FOCUS STATES === */
 a:focus, button:focus, input:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2.5px;
}

/* === MODALS AND COOKIE BANNER HIGHER Z-INDEX, NO OVERLAP, BREATHING ROOM === */
html { scroll-padding-top: 72px; }

/* == Hide/Show mobile nav + overlay JS helpers == */
.mobile-menu {
  visibility: hidden;
}
.mobile-menu.open {
  visibility: visible;
}

/* === END OF STYLE.CSS === */