/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1.5;
 -webkit-font-smoothing: antialiased;
 color: #111; /* Default dark text for contrast */
 background: #fff;
 min-height: 100vh;
}
ol, ul {
 list-style: none;
}
a {
 color: inherit;
 text-decoration: none;
 background-color: transparent;
 transition: color 0.2s;
}
img {
 max-width: 100%;
 display: block;
 height: auto;
}
button, input, select, textarea {
 font: inherit;
}
*:focus {
 outline: 2px solid #384050;
 outline-offset: 2px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

body {
 font-family: 'Open Sans', Arial, sans-serif;
 font-size: 16px;
 color: #232323;
 background: #fff;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', Arial, sans-serif;
 color: #111;
 font-weight: 900;
 letter-spacing: -0.5px;
 line-height: 1.16;
}
h1 {
 font-size: 2.5rem;
 margin-bottom: 20px;
}
h2 {
 font-size: 2rem;
 margin-bottom: 16px;
}
h3 {
 font-size: 1.32rem;
 margin-bottom: 12px;
 font-weight: 700;
}

p {
 font-size: 1rem;
 line-height: 1.7;
 margin-bottom: 18px;
 color: #232323;
}
strong, b {
 font-weight: 700;
 color: #111;
}

/* SPACING & CONTAINER */
.container {
 width: 100%;
 max-width: 1160px;
 margin: 0 auto;
 padding-left: 20px;
 padding-right: 20px;
}
.section {
 margin-bottom: 60px;
 padding: 40px 20px;
}
.content-wrapper {
 display: flex;
 flex-direction: column;
 gap: 24px;
}
.text-section {
 gap: 16px;
}

/* FLEX LAYOUTS */
.card-container {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
}
.card {
 margin-bottom: 20px;
 position: relative;
 display: flex;
 flex-direction: column;
 min-width: 240px;
 background: #fff;
 border-radius: 18px;
 box-shadow: 0 4px 24px rgba(40,40,40, 0.08), 0 1.5px 3.5px rgba(56,64,80, 0.05);
 border: 1.5px solid #ececec;
 transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover {
 box-shadow: 0 8px 28px rgba(56,64,80, 0.14);
 border-color: #B7C8C0;
 transform: translateY(-5px) scale(1.012);
}
.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;
}
.testimonial-card {
 display: flex;
 align-items: center;
 gap: 20px;
 padding: 20px;
 min-width: 220px;
 background: #fafbfc;
 border-radius: 17px;
 box-shadow: 0 2px 16px rgba(40,40,40, 0.08);
 border: 1.5px solid #eaeaea;
 margin-bottom: 20px;
 transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card p {
 font-size: 1.13rem;
 color: #222;
 font-style: italic;
 margin-bottom: 4px;
}
.testimonial-card span {
 font-size: 1rem;
 color: #606060;
}
.testimonial-card:hover {
 box-shadow: 0 5px 28px rgba(56, 64, 80, 0.14);
 border-color: #B7C8C0;
}

/* HEADER */
header {
 background: #fff;
 border-bottom: 1.5px solid #ececec;
 min-height: 70px;
 position: sticky;
 top: 0;
 z-index: 30;
}
header .container {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 justify-content: space-between;
 min-height: 70px;
 gap: 15px;
}
header nav {
 display: flex;
 gap: 24px;
 align-items: center;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 700;
 opacity: 0.96;
}
header nav a {
 color: #111;
 padding: 8px 5px;
 font-size: 1rem;
 border-radius: 3px;
 transition: color 0.17s, background 0.16s;
 position: relative;
}
header nav a:hover, header nav a:focus {
 color: #384050;
 background: #ececec;
}
header .btn-primary{
 display: inline-flex;
 align-items: center;
 padding: 11px 24px;
 border-radius: 22px;
 background: #111;
 color: #fff;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 700;
 font-size: 1rem;
 letter-spacing: 0.5px;
 box-shadow: 0 2px 10px rgba(40,40,40,.042);
 border: none;
 margin-left: 18px;
 transition: background 0.17s, color 0.14s, box-shadow 0.17s, transform 0.18s;
 cursor: pointer;
}
header .btn-primary:hover, header .btn-primary:focus {
 background: #384050;
 color: #fff;
 box-shadow: 0 6px 24px rgba(56, 64, 80, 0.14);
 transform: translateY(-2px) scale(1.013);
}

/* MOBILE MENU */
.mobile-menu-toggle {
 display: none;
 background: none;
 border: none;
 font-size: 2rem;
 color: #111;
 margin-left: 8px;
 z-index: 1040;
 cursor: pointer;
 transition: color 0.14s;
}
.mobile-menu-toggle:focus {
 color: #384050;
}
.mobile-menu {
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 background: rgba(33,34,35,0.84);
 z-index: 1040;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-end;
 pointer-events: none;
 opacity: 0;
 transform: translateX(-100%);
 transition: opacity 0.24s cubic-bezier(.7,.2,.7,1), transform 0.5s cubic-bezier(.7,.2,.7,1);
}
.mobile-menu.open {
 pointer-events: all;
 opacity: 1;
 transform: translateX(0);
}
.mobile-menu-close {
 background: none;
 border: none;
 font-size: 2.3rem;
 color: #fff;
 padding: 18px 26px 6px 0;
 align-self: flex-end;
 cursor: pointer;
}
.mobile-nav {
 display: flex;
 flex-direction: column;
 gap: 24px;
 align-items: flex-start;
 margin: 40px 0 0 36px;
}
.mobile-nav a {
 font-family: 'Montserrat', Arial, sans-serif;
 font-size: 1.25rem;
 font-weight: 700;
 color: #fff;
 opacity: 0.95;
 padding: 10px 6px;
 border-radius: 4px;
 min-width: 180px;
 transition: background 0.18s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
 background: #B7C8C0;
 color: #111;
}
@media (max-width: 1020px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}


@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper,
  .content-grid,
  .card-container {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.32rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.07rem;
    margin-bottom: 5px;
  }
}

/* HERO SECTION */
.hero {
 background: #232323 linear-gradient(90deg, #232323 85%, #384050 100%);
 color: #fff;
 padding: 72px 0 60px 0;
 margin-bottom: 0;
 position: relative;
 box-shadow: 0 3px 28px rgba(40,40,40, 0.11);
}
.hero .container {
 align-items: center;
}
.hero .content-wrapper {
 align-items: flex-start;
}
.hero h1 {
 color: #fff;
 font-size: 2.7rem;
 font-weight: 900;
 margin-bottom: 16px;
 letter-spacing: -1.3px;
}
.hero p {
 color: #efefef;
 font-size: 1.18rem;
 margin-bottom: 26px;
}
.hero .btn-primary {
 background: #fff;
 color: #232323;
 font-weight: 900;
 box-shadow: 0 1.5px 8px rgba(180,180,180,0.16);
}
.hero .btn-primary:hover {
 background: #B7C8C0;
 color: #232323;
}
@media (max-width: 768px) {
 .hero {
   padding: 38px 0 18px 0;
 }
 .hero h1 { font-size: 1.35rem; }
}

/* FEATURES UL */
.content-wrapper ul {
 display: flex;
 flex-wrap: wrap;
 gap: 20px 32px;
 margin-bottom: 16px;
}
.content-wrapper ul li {
 display: flex;
 align-items: center;
 gap: 14px;
 font-size: 1.08rem;
 color: #232323;
 background: #f6f6f6;
 border-radius: 13px;
 padding: 12px 20px;
 margin-bottom: 4px;
 border: 1px solid #e4e4e4;
 min-width: 226px;
 font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 600;
}
.content-wrapper ul li img {
 width: 28px;
 height: 28px;
 display: block;
 filter: grayscale(95%) brightness(1.09);
 opacity: 0.86;
}
@media (max-width: 768px) {
  .content-wrapper ul {
    flex-direction: column;
    gap: 10px 0;
  }
  .content-wrapper ul li {
    min-width: unset;
    font-size: 1rem;
  }
}

/* SERVICES CARDS */
.service-cards {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
 margin-bottom: 22px;
}
.service-cards > div {
 flex: 1 1 240px;
 background: #fafbfc;
 border-radius: 16px;
 padding: 28px 22px;
 min-width: 225px;
 border: 1.5px solid #eaeaea;
 box-shadow: 0 2px 13px rgba(80,80,80,0.06);
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 transition: box-shadow 0.17s, border-color 0.17s, transform 0.16s;
}
.service-cards > div:hover {
 border-color: #B7C8C0;
 box-shadow: 0 6px 28px rgba(56, 64, 80, 0.13);
 transform: translateY(-3px) scale(1.011);
}
.service-cards h3 {
 font-size: 1.21rem;
 color: #232323;
 margin-bottom: 8px;
}
.service-cards p {
 font-size: 1.02rem;
 color: #323232;
}
@media (max-width: 768px) {
 .service-cards {
   flex-direction: column;
   gap: 12px;
 }
 .service-cards > div {
   min-width: 100%;
   padding: 18px 9px;
 }
}

/* CARDS GENERIC */
.card-content {
 display: flex;
 flex-direction: column;
 justify-content: center;
}

/* BLOG ARTICLES */
.content-wrapper article {
 background: #fafbfc;
 border-radius: 14px;
 border: 1.3px solid #ececec;
 box-shadow: 0 1.5px 7px rgba(70,70,70,0.051);
 padding: 22px 18px;
 margin-bottom: 20px;
 transition: box-shadow 0.15s, border-color 0.14s, transform 0.14s;
}
.content-wrapper article h3 {
 margin-bottom: 10px;
 font-size: 1.18rem;
 font-weight: 700;
 color: #232323;
}
.content-wrapper article p {
 margin-bottom: 11px;
}
.content-wrapper article a {
 color: #384050;
 font-weight: 700;
 border-bottom: 1.5px solid #B7C8C0;
 padding-bottom: 1.5px;
 font-family: 'Montserrat', Arial, sans-serif;
 font-size: 1.01rem;
 transition: color 0.13s, border-color 0.16s;
}
.content-wrapper article a:hover, .content-wrapper article a:focus {
 color: #111;
 border-color: #384050;
}

/* MAP PLACEHOLDER */
.map-placeholder {
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 18px;
 background: #f6f6f6;
 border-radius: 12px;
 padding: 13px 18px;
 border: 1.3px solid #ececec;
 margin-bottom: 14px;
}
.map-placeholder img {
 width: 40px;
 height: 40px;
 filter: grayscale(95%) brightness(1.11);
 margin-right: 10px;
}
@media (max-width: 768px) {
 .map-placeholder { flex-direction: column; align-items: flex-start; gap: 7px; }
 .map-placeholder img { margin-right: 0; }
}

/* FOOTER */
footer {
 background: #232323;
 color: #fff;
 padding: 44px 0 18px 0;
 font-size: 1rem;
 border-top: 1.5px solid #ececec;
}
footer .container {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: 30px;
 justify-content: space-between;
}
footer nav {
 display: flex;
 flex-direction: column;
 gap: 13px;
}
footer nav a {
 color: #fff;
 opacity: 0.94;
 font-size: 0.98rem;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 600;
 transition: color 0.14s;
 padding: 4px 0;
}
footer nav a:hover, footer nav a:focus {
 color: #B7C8C0;
 text-decoration: underline;
}
.footer-contact {
 color: #f1f1f1;
 font-size: 0.97rem;
 line-height: 1.6;
 margin-top: 4px;
}
footer img {
 margin-bottom: 7px;
 width: 49px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  footer {
    font-size: 0.99rem;
    padding: 29px 0 13px 0;
  }
}

/* BUTTONS */
.btn-primary,
button.btn-primary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 11px 28px;
 border-radius: 25px;
 background: #111;
 color: #fff;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 700;
 font-size: 1.05rem;
 border: none;
 box-shadow: 0 2px 10px rgba(40,40,40,.042);
 cursor: pointer;
 transition: background 0.15s, color 0.13s, box-shadow 0.15s, transform 0.13s;
 text-align: center;
 letter-spacing: 0.8px;
}
.btn-primary:hover, .btn-primary:focus {
 background: #384050;
 color: #fff;
 box-shadow: 0 8px 28px rgba(56, 64, 80, 0.13);
 transform: translateY(-2px) scale(1.012);
}

/* Cookie Consent Banner */
.cookie-banner {
 position: fixed;
 left: 0; right: 0;
 bottom: 0;
 width: 100vw;
 background: #fff;
 color: #232323;
 border-top: 2px solid #ececec;
 box-shadow: 0 -7px 28px -16px rgba(20,20,20,0.17);
 z-index: 1300;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 16px;
 padding: 24px 20px 22px 20px;
 font-size: 1.07rem;
 animation: slideUpCookie 0.66s cubic-bezier(.8,.3,.55,1);
}
@keyframes slideUpCookie { from { transform: translateY(110%); } to { transform: translateY(0); } }
.cookie-banner p {
 font-size: 1.07rem;
 color: #232323;
 margin: 0 0 0 0;
 line-height: 1.6;
}
.cookie-banner .cookie-actions {
 display: flex;
 gap: 16px;
}
.cookie-banner button {
 border: none;
 border-radius: 22px;
 padding: 10px 20px;
 font-size: 1rem;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 600;
 cursor: pointer;
 margin: 0 1px;
 box-shadow: 0 1.5px 6px rgba(56,64,80,0.065);
 transition: background 0.15s, color 0.13s, box-shadow 0.13s, transform 0.12s;
}
.cookie-banner .accept {
 background: #384050;
 color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
 background: #232323;
}
.cookie-banner .reject {
 background: #B7C8C0;
 color: #232323;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
 background: #384050;
 color: #fff;
}
.cookie-banner .settings {
 background: #ececec;
 color: #232323;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
 background: #B7C8C0;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97rem;
    padding: 18px 11px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 background: rgba(40, 40, 40, 0.48);
 z-index: 1400;
 display: flex;
 align-items: center;
 justify-content: center;
 animation: fadeInMod 0.17s cubic-bezier(.7,.35,.7,1);
}
@keyframes fadeInMod { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
 background: #f7f7f7;
 color: #222;
 padding: 36px 28px 26px 28px;
 border-radius: 22px;
 box-shadow: 0 10px 48px rgba(30,34,44, 0.19);
 min-width: 320px;
 max-width: 92vw;
 min-height: 260px;
 display: flex;
 flex-direction: column;
 gap: 22px;
 position: relative;
 pointer-events: auto;
 animation: slideDownCookieModal 0.23s cubic-bezier(.7,.48,.8,1);
}
@keyframes slideDownCookieModal { from { transform: translateY(-45px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-modal h2 {
 font-size: 1.27rem;
 font-weight: 900;
 color: #384050;
 margin-bottom: 12px;
}
.cookie-modal ul {
 display: flex;
 flex-direction: column;
 gap: 11px;
}
.cookie-modal li {
 display: flex;
 align-items: center;
 gap: 13px;
 font-size: 1.05rem;
}
.cookie-toggle {
 display: inline-flex;
 align-items: center;
 border-radius: 16px;
 border: 1.4px solid #ececec;
 background: #fff;
 margin-left: 14px;
 padding: 3.5px 7px;
 min-width: 28px;
 min-height: 22px;
 transition: border-color 0.13s, background 0.13s;
}
.cookie-toggle input[type='checkbox'] {
 appearance: none;
 width: 26px;
 height: 16px;
 border-radius: 12px;
 background: #ececec;
 position: relative;
 outline: none;
 border: 0;
 transition: background 0.14s;
 cursor: pointer;
 margin: 0;
}
.cookie-toggle input[type='checkbox']:checked {
 background: #384050;
}
.cookie-toggle input[type='checkbox']::before {
 content: '';
 display: block;
 width: 14px;
 height: 14px;
 border-radius: 50%;
 background: #fff;
 position: absolute;
 left: 1px;
 top: 1px;
 box-shadow: 0 1.5px 4px rgba(0,0,0,0.07);
 transition: left 0.13s;
}
.cookie-toggle input[type='checkbox']:checked::before {
 left: 11px;
 background: #B7C8C0;
}
.cookie-modal .close-modal {
 position: absolute;
 top: 10px;
 right: 17px;
 background: none;
 border: none;
 font-size: 1.7rem;
 color: #232323;
 cursor: pointer;
 padding: 3px;
}
.cookie-modal .close-modal:focus {
 color: #384050;
}
.cookie-modal .cookie-actions {
 display: flex;
 gap: 15px;
 justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
 font-size: 1rem;
 border-radius: 22px;
 padding: 10px 24px;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 700;
 transition: background 0.14s, color 0.12s;
 cursor: pointer;
}
.cookie-modal .accept {
 background: #384050;
 color: #fff;
}
.cookie-modal .accept:hover { background: #232323; }
.cookie-modal .reject {
 background: #B7C8C0;
 color: #232323;
}
.cookie-modal .reject:hover { background: #384050; color: #fff; }

/* FORMULAIRES */
input, textarea, select {
 background: #fafbfc;
 border: 1.5px solid #ececec;
 border-radius: 8px;
 font-size: 1rem;
 padding: 8px 14px;
 width: 100%;
 margin-bottom: 16px;
 color: #1a1a1a;
}
input:focus, textarea:focus, select:focus {
 border-color: #384050;
 background: #fff;
}
label {
 font-weight: 700;
 font-family: 'Montserrat', Arial, sans-serif;
 color: #232323;
 margin-bottom: 5px;
 display: block;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .service-cards > div, .card, .testimonial-card, .cookie-banner, .cookie-modal {
    transition: all 0.2s cubic-bezier(.7,.2,.8,1);
  }
}

/* MISC UTILS */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* GENERAL VISUAL HIERARCHY */
hr {
 border: 0;
 border-top: 1.5px solid #ececec;
 margin: 32px 0;
}

/* Hide elements visually (for JS state management, optional) */
.hide { display: none !important; }
section {
  padding: 15px;
}
/* No CSS grid or columns anywhere. All layouts use flex only. */