/* CSS RESET & BASELINE NORMALIZATION */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #181818;
  min-height: 100vh;
  min-width: 320px;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #181818;
  transition: color .2s cubic-bezier(.52,.01,.16,1);
  text-decoration: underline;
}
a:hover, a:focus {
  color: #274690;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #101010;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h4,
h5,
h6 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.22;
}
p, .text-section {
  color: #222;
  font-size: 1rem;
  margin-bottom: 18px;
  max-width: 64ch;
}
.text-section .mission {
  font-style: italic;
  font-weight: 600;
  color: #505050;
  background: #f6f6f6;
  border-left: 3px solid #101010;
  padding: 10px 18px;
  margin-top: 18px;
}

strong {
  font-weight: 700;
  color: #181818;
}

/********************
 LAYOUT CONTAINERS
*********************/
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Sections with Dramatic Monochrome Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(50,50,50,0.08);
  transition: box-shadow .23s cubic-bezier(.52,.01,.16,1);
}

/***********
 HEADER + NAV
************/
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 18px;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 24px;
  min-width: 130px;
  min-height: 42px;
}
.logo-link img {height: 42px; width: auto;}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  background: none;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.002em;
  transition: background .15s, color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #274690;
  background: #f3f3f3;
}
.cta-button.primary {
  margin-left: 16px;
}

/********************
 HERO SECTIONS
********************/
.hero, .hero-contact {
  background: #101010;
  color: #fff;
  width: 100%;
  padding: 64px 0 54px 0;
  border-bottom: 3px solid #222;
}
.hero .content-wrapper, .hero-contact .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero-contact h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.17);
}
.hero p, .hero-contact p {
  color: #e5e5e5;
  font-size: 1.17rem;
  margin-bottom: 30px;
}
.hero .cta-button,
.hero-contact .cta-button {
  background: #fff;
  color: #181818;
  border: 2px solid #fff;
  margin-top: 15px;
}
.hero .cta-button:hover,
.hero-contact .cta-button:hover {
  background: #181818;
  color: #fff;
  border: 2px solid #fff;
}

/********
 CTA SECTION
***********/
.cta-section {
  align-items: center !important;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  color: #181818;
  margin-bottom: 12px;
  margin-top: 0;
}
.cta-section .cta-button {margin: 0 auto;}

/**************
 CARDS & FEATURES
***************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 2px;
  margin-top: 16px;
  width: 100%;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(33,33,33, 0.055);
  padding: 22px 18px 20px 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 265px;
}
.feature:hover {
  box-shadow: 0 6px 28px rgba(20,20,20,0.14);
  z-index: 2;
}
.feature img {
  height: 38px; width: 38px; margin-bottom: 0.5em;
  filter: grayscale(95%) contrast(1.1);
}
.feature h3 {
  font-size: 1.07rem;
  color: #222;
  margin-bottom: 7px;
}
.feature p {
  font-size: 0.97rem;
  color: #444;
}

/************
 PRICING TABLE
************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,10,10,0.06);
}
.pricing-table thead tr {
  background: #181818;
  color: #fff;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
}
.pricing-table th {font-weight: 700;}
.pricing-table tr:last-child td {border-bottom: none;}
.pricing-table tbody tr:hover {
  background: #f6f6f6;
}
.info {font-size: 1rem; margin-top: 10px; color: #585858;}

/**********
 ARTICLE, FAQ, UL LISTS
***********/
.article-list > li, .service-list > li, .service-detailed-list > li {
  margin-bottom: 24px;
  background: #fafeff;
  border-radius: 10px;
  padding: 15px 22px 15px 18px;
  color: #191919;
  font-size: 1rem;
  box-shadow: 0 1px 7px rgba(0,0,0,0.04);
}
.article-list > li:not(:last-child),
.service-list > li:not(:last-child),
.service-detailed-list > li:not(:last-child) {
  margin-bottom: 20px;
}

/************
 FAQ ACCORDION
*************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(45,45,45,0.06);
  padding: 18px 22px 16px 22px;
}
.faq-item h3 {
  color: #1a1a1a;
  font-size: 1.04rem;
  margin-bottom: 7px;
}
.faq-item p {
  color: #222;
  margin-bottom: 0;
}

/**************
 TESTIMONIALS
**************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  border-left: 5px solid #191919;
  transition: box-shadow .18s;
}
.testimonial-card p {
  color: #101010;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #274690;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  margin-left: 7px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(19,19,19,0.14);
}

/*************
 OTHER BOXES
**************/
.info-box {
  background: #f6f6f6;
  border-left: 4px solid #222;
  border-radius: 10px;
  padding: 16px 22px 14px 22px;
  margin: 24px 0 0 0;
  font-size: 1.04rem;
}
.map-placeholder {
  background: #111;
  color: #fff;
  padding: 32px 0;
  text-align: center;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1rem;
  margin-bottom: 18px;
}

/*****************
 BUTTONS & CTAs
******************/
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  background: #191919;
  color: #fff;
  border: 2px solid #191919;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25,25,25,0.07);
  text-decoration: none;
  transition: background .12s, color .12s, border-color .18s, box-shadow .19s;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-button.primary {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
  margin-left: 0.75em;
}
.cta-button:hover, .cta-button:focus, button:hover, button:focus {
  background: #fff;
  color: #191919;
  border-color: #101010;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #191919;
  color: #fff;
}

/*********
 FOOTER
**********/
footer {
  background: #161616;
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 80px;
  border-top: 1.5px solid #252525;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #f1f1f1;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  border-radius: 5px;
  padding: 4px 12px;
  transition: color .15s, background .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: #222;
}
.license {
  color: #878787;
  font-size: 0.95rem;
  text-align: center;
}

/* Thank you message */
.thank-you-message {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(40,40,40,0.08);
  padding: 36px 24px 30px 24px;
  text-align: center;
  margin-top: 20px;
}
.thank-you-message p {margin-bottom: 20px;font-size:1.25rem;}

/**************************
 RESPONSIVE FLEXBOX PATTERNS
***************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(30,30,30,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 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;
}
.testimonial-card { /* Already covered above */ }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************
 MOBILE NAV HAMBURGER MENU
*************/
.mobile-menu-toggle {
  display: none;
  background: #101010;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  margin-left: 10px;
  font-size: 2rem;
  line-height: 1;
  z-index: 500;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(17,17,17, 0.97);
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 28px 0 0;
  cursor: pointer;
  padding: 5px 10px;
  z-index: 2010;
  transition: color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f9b233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin: 42px 0 0 0;
  gap: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  width: 82%;
  display: block;
  padding: 18px 0 12px 0;
  font-size: 1.38rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.055);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 0;
  transition: background .14s, color .14s;
}
.mobile-nav a:last-child {border-bottom: none;}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1a1a1a;
  color: #f9b233;
}

/**************
 COOKIE CONSENT BANNER & MODAL
***************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  border-top: 2px solid #191919;
  box-shadow: 0 -3px 14px rgba(21,21,21,0.18);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 18px 22px 18px;
  font-size: 1rem;
  transition: transform .22s cubic-bezier(.73,.01,.23,1);
  min-height: 66px;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0.3;
}
.cookie-banner .cookie-text {
  color: #181818;
  margin-right: 24px;
  font-size: 1.04rem;
  max-width: 340px;
}
.cookie-banner .cookie-btn {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin: 0 5px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background .13s, color .14s, border .13s;
}
.cookie-banner .cookie-btn.accept {
  background: #191919;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #fff;
  color: #191919;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #191919;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #f7f7f7;
  color: #181818;
  border: 2px dashed #bdbdbd;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fff;
  color: #101010;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3980;
  background: rgba(10,10,10,0.45);
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-52%) scale(1);
  background: #fff;
  color: #101010;
  z-index: 3990;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(35,35,35,0.19);
  width: 92%;
  max-width: 420px;
  padding: 30px 24px 24px 24px;
  transition: opacity .22s, transform .23s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%,-62%) scale(.97);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 16px;
  color: #181818;
}
.cookie-modal label {
  font-size: 1rem;
  color: #181818;
  margin-left: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #bababa;
  text-decoration: line-through;
}
.cookie-modal-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

/***********
 SECTION SPACING & MOBILE ADAPTATION
***********/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 1000px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .section {
    padding: 26px 7px;
  }
  .footer-menu {gap: 14px;}
}
@media (max-width: 768px) {
  html {font-size: 15px;}
  h1 {font-size: 2.09rem;}
  h2 {font-size: 1.35rem;}
  h3 {font-size: 1.06rem;}
  section, .section {padding: 18px 5px; margin-bottom: 36px;}

  .main-nav ul, .main-nav .cta-button.primary {display: none !important;}
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    position: absolute;
    right: 16px;
    top: 19px;
  }
  .main-nav {padding-right: 61px;}
  .feature-grid {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {flex-direction: column; align-items: flex-start;}
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    text-align: left;
  }
}
@media (max-width: 650px) {
  .container {padding-left: 3px; padding-right: 3px;}
  .section, section {padding: 12px 2px 21px 2px;}
}

/***********
 SPECIAL CLASSES
***********/
.hero, .hero-contact {
  border-radius: 0 0 30px 30px;
}
.cta-section, .thank-you-message {
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.mission {font-style: italic;font-weight:600;color:#505050;border-left:3px solid #101010;padding:10px 18px;margin-top:18px;background:#f6f6f6;}
.info-box {background: #f6f6f6;border-left: 4px solid #222;border-radius: 10px;padding: 16px 22px 14px 22px;margin: 24px 0 0 0;font-size: 1.04rem;}

/***********
 FORMS (if any in future)
***********/
input, textarea, select {
  border-radius: 6px;
  border: 1px solid #d4d4d4;
  padding: 10px 13px;
  font-family: inherit;
  font-size: 1.03rem;
  margin-bottom: 16px;
  background: #fafafa;
  color: #222;
  transition: border .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #181818;
  box-shadow: 0 0 4px 1px #cacaca33;
  outline: none;
}

/***********
 ACCESSIBILITY EXTRAS
***********/
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed #274690;
  outline-offset: 2px;
}

/***************************************************************
 DRAMATIC MONOCHROME SOPHISTICATED ACCENTS FOR BRAND CONSISTENCY
***************************************************************/
body {
  background: #f8f8f8;
}
section, .section, .card, .feature, .thank-you-message {
  background: #fff;
  box-shadow: 0 3px 30px rgba(24,24,24,0.04);
}
footer, .hero, .hero-contact {
  background: #101010;
  color: #fff;
}
h1, h2, h3, .footer-menu a {
  color: #101010;
}
.hero h1, .hero-contact h1, .footer-menu a {
  color: #fff;
}
.cta-button, .mobile-menu-toggle, .mobile-menu-close {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
}
.cta-button.primary {
  background: #fff;
  color: #181818;
  border: 2px solid #181818;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #181818;
  color: #fff;
}
::selection {
  background: #181818;
  color: #fff;
}

/*****************************
 END OF CSS
*****************************/
