/* RESET & BASE STYLES (normalize, box model, typography) */

/* Reset/normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #141414;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
ul {
  list-style: disc;
}
li {
  margin-bottom: 0.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus {
  outline: 2px solid #303030;
  outline-offset: 2px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #090909;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  line-height: 1.21;
}
h3 {
  font-size: 1.325rem;
  line-height: 1.26;
}
h4 {
  font-size: 1.025rem;
}
p, .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 1.25em;
}
.subheadline {
  color: #424242;
  font-size: 1.18rem;
}
.cta-text {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
  color: #181818;
}
strong, b {
  font-weight: 700;
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .cta-text { font-size: 1rem; }
}

/* LAYOUT: CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

/* SPACING & SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: #fff;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 0 0 0;
    margin-bottom: 36px;
  }
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,20,20,0.05);
  border-bottom: 1.5px solid #eaeaea;
  width: 100%;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 48px;
}
@media (max-width: 480px) {
  header a img {
    height: 38px;
  }
}

/* MAIN NAVIGATION (Desktop) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #282828;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 2px 6px 2px;
  border-radius: 5px;
  transition: color .17s cubic-bezier(.4,0,.2,1), background .17s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.main-nav a:not(.button-primary):hover, .main-nav a:focus {
  background: #F3F6F9;
  color: #31677A;
}
@media (max-width: 992px) {
  .main-nav {
    gap: 8px;
  }
  .main-nav a {
    font-size: .97rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

.button-primary, .main-nav a.button-primary {
  background: #000;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 32px;
  border-radius: 26px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: background 0.19s cubic-bezier(.4,0,.2,1), color 0.17s cubic-bezier(.4,0,.2,1), box-shadow 0.21s;
  box-shadow: 0px 3px 20px 0 rgba(20,20,20,0.08);
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  white-space: nowrap;
}
.button-primary:hover, .button-primary:focus {
  background: #31677A;
  color: #fff !important;
  box-shadow: 0px 4px 32px 0 rgba(49,49,49,0.14);
}
.button-secondary {
  background: #fff;
  color: #090909 !important;
  border: 1.5px solid #141414;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.21s, color 0.18s, border 0.21s;
  box-shadow: 0px 2px 14px 0 rgba(20,20,20,0.05);
  margin-top: 10px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #31677A;
  color: #fff !important;
  border: 1.5px solid #31677A;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #090909;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  border-radius: 50%;
  padding: 3px 13px 5px 7px;
  z-index: 1202;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F3F6F9;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,1);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.34,.62,.61,.99);
  z-index: 1999;
  box-shadow: 4px 0 18px 0 rgba(20,20,20,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.0rem;
  color: #090909;
  background: none;
  border: none;
  padding: 14px 21px 14px 12px;
  align-self: flex-end;
  cursor: pointer;
  margin: 12px 15px 7px 0;
  border-radius: 50%;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F3F6F9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 32px 38px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  color: #141414;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 3px;
  transition: background .17s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4E8EE;
  color: #31677A;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO */
section .content-wrapper > h1, section .content-wrapper > .subheadline {
  margin-bottom: 10px;
}

/* FLEXBOX CONTENT PATTERNS & CARDS */
.features-grid, .qualification-badges, .testimonials-row, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .features-grid, .qualification-badges, .testimonials-row, .benefit-grid {
    gap: 14px;
    flex-direction: column;
  }
}
.feature, .badge, .benefit-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,30,30,0.07);
  padding: 24px 18px 18px 18px;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
  transition: box-shadow .18s, border-color .22s;
}
.feature img, .badge img, .service-highlights img {
  height: 36px;
  margin-bottom: 8px;
}
.feature:hover, .badge:hover, .benefit-grid > div:hover {
  box-shadow: 0px 6px 36px 0 rgba(10,10,10,0.16);
  border-color: #31677A;
}

.qualification-badges .badge {
  flex: 1 1 200px;
  align-items: center;
  justify-content: flex-start;
  background: #FBFBFB;
}

.benefit-grid > div {
  min-width: 180px;
  flex: 1 1 180px;
  font-weight: 500;
  font-family: 'Open Sans', Arial, sans-serif;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 22px 0 9px 0;
}
.service-highlights li {
  background: #F7F7F7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  margin-bottom: 0;
  font-weight: 500;
  color: #363636;
  font-size: .99rem;
}

.contact-block {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 26px 24px 20px 18px;
  box-shadow: 0px 2px 8px rgba(52,52,52,0.03);
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}

.map-placeholder {
  background: #F3F6F9;
  color: #555;
  font-size: .98rem;
  padding: 35px 12px 29px 12px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px dashed #bdbdbd;
  text-align: center;
}

/* CARD CONTAINER GENERIC */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,30,30,0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 28px 18px 22px 18px;
}

.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;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px 18px 22px;
  min-width: 220px;
  background: #F7F8FA;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(25,25,25,.07);
  border: 1px solid #e4e4e4;
  transition: box-shadow .16s, border-color .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(10,10,10,.12);
  border-color: #31677A;
}
.testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
  color: #242424;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #444;
}

.features-grid .feature {
  min-width: 220px;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER */
footer {
  background: #141414;
  color: #fff;
  padding: 0 0 0 0;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 25px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 170px;
}
.footer-nav a {
  color: #e6e6e6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding: 4px 0px 4px 0px;
  border-radius: 3px;
  transition: background .14s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e2a752;
  color: #222 !important;
}
.footer-contact p {
  color: #d5d5d5;
  font-size: 0.97rem;
  margin: 7px 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact img {
  height: 16px;
  margin-right: 4px;
}
@media (max-width: 820px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width:480px) {
  footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .features-grid .feature,
  .qualification-badges .badge,
  .benefit-grid > div {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-contact p {
    font-size: 0.94rem;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.button-primary, .button-secondary {
  transition: background .18s, color .14s, box-shadow .18s, border .21s;
}
.card, .feature, .testimonial-card, .badge {
  transition: box-shadow .19s, border-color .19s;
}

/* LINKS & INTERACTIVE */
a, button {
  cursor: pointer;
}
a:focus, button:focus, input:focus {
  outline: 2px solid #E2A752;
  outline-offset: 1.5px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 97vw;
  max-width: 530px;
  z-index: 3000;
  background: #191919;
  color: #f7f7f7;
  border-radius: 22px;
  box-shadow: 0 10px 38px rgba(10,10,10,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 32px 25px 32px;
  font-size: 1.01rem;
  gap: 15px;
  opacity: 1;
  transition: opacity .3s, transform .4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-banner strong {
  color: #E2A752;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 17px;
  font-weight: 600;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 0;
  transition: background .17s, color .14s;
}
.cookie-accept {
  background: #31677A;
  color: #fff;
}
.cookie-accept:hover,.cookie-accept:focus { background: #E2A752; color: #141414; }
.cookie-reject {
  background: #fff;
  color: #141414;
  border: 1.5px solid #E2A752;
}
.cookie-reject:hover,.cookie-reject:focus{ background: #E2A752; color: #181818; }
.cookie-settings {
  background: transparent;
  border: 1.5px solid #E2A752;
  color: #E2A752;
}
.cookie-settings:hover,.cookie-settings:focus{ background: #E2A752; color: #181818; }
@media (max-width:480px) {
  .cookie-banner {
    max-width: 97vw;
    padding: 17px 10px 17px 13px;
    font-size: .95rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  background: #fff;
  color: #242424;
  border-radius: 18px;
  box-shadow: 0 18px 64px rgba(30,30,30,0.20);
  z-index: 3200;
  width: 97vw;
  max-width: 420px;
  padding: 32px 25px 25px 25px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookie-popin .32s cubic-bezier(.41,0,.45,1.4) both;
}
.cookie-modal.open { display: flex; }
@keyframes cookie-popin {
  from { opacity: 0; transform: translate(-50%,-50%) scale(.82); }
  to { opacity: 1; transform: translate(-50%,-52%) scale(1); }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #191919;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 11px;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F3F6F9;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.01em;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.cookie-category-toggle {
  appearance: none;
  background: #e3e3e3;
  border-radius: 14px;
  width: 38px;
  height: 22px;
  position: relative;
  outline: none;
  margin-left: 5px;
  transition: background .12s;
}
.cookie-category-toggle:checked {
  background: #31677A;
}
.cookie-category-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.cookie-category-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-category .essential-tag {
  background: #31677A;
  color: #fff;
  font-size: .88rem;
  border-radius: 9px;
  padding: 3px 10px 3px 10px;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 6px;
}
.cookie-modal-actions button {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 17px;
  font-weight: 600;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  margin-right: 0;
  transition: background .17s, color .14s;
}
.cookie-modal .cookie-accept {
  background: #31677A;
  color: #fff;
}
.cookie-modal .cookie-accept:hover {
  background: #E2A752;
  color: #141414;
}
.cookie-modal .cookie-reject {
  background: #fff;
  color: #141414;
  border: 1.5px solid #E2A752;
}
.cookie-modal .cookie-reject:hover {
  background: #E2A752;
  color: #141414;
}
@media (max-width: 520px) {
  .cookie-modal { max-width: 98vw; padding: 18px 3vw 14px 3vw; }
}

/* UTILS & GENERIC CLASSES */
.text-center { text-align: center; }
.inline { display: inline; }
.hide { display: none !important; }

/* ACCESSIBILITY */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* DARK/ELEVATED VARIANTS */
.bg-dark, .section.bg-dark {
  background: #141414;
  color: #fff;
}
.bg-light, .section.bg-light {
  background: #fff;
  color: #181818;
}

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #b6b6b6; opacity:1; }
::-moz-placeholder { color: #b6b6b6; opacity:1; }
:-ms-input-placeholder { color: #b6b6b6; opacity:1; }
::placeholder { color: #b6b6b6; opacity:1; }

/* Icon Alignment Utility */
img[alt*="icon"] { vertical-align: middle; }

/* VISUAL HIERARCHY */
section:not(:last-child) {
  border-bottom: 1.5px solid #f0f0f0;
}

/* Prevent Content Overlap */
section, .section, .content-wrapper, .features-grid, .card-container, .testimonials-row, .footer-row {
  min-width: 0;
}

/* END OF STYLE.CSS */