/* 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;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FAFAFA;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #232323;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: rgba(0,0,0,0.06);
  transition: background 0.3s, color 0.3s;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}
a {
  color: #232323;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #216869;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.2em;
  line-height: 1.7;
}
li {
  margin-bottom: 0.35em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #171717;
  margin-bottom: 0.6em;
  line-height: 1.18;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232323;
}
h4 {
  font-size: 1.16rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.header,
footer {
  width: 100%;
}
/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #EAEAEA;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
.logo img {
  height: 42px;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
  font-weight: 500;
  opacity: 0.95;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.22s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #216869;
  border-bottom: 2px solid #216869;
}
.main-nav .btn-primary {
  margin-left: 20px;
}
/* HIDE MOBILE NAV/SHOW BURGER */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #232323;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #216869;
}
.mobile-menu {
  display: none;
}
.mobile-menu-open .mobile-menu {
  display: flex;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav a, .main-nav .btn-primary {
    font-size: 0.97rem;
    padding: 2px 0;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,34,35,0.97);
  z-index: 1110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.57,1.17,.27,1), opacity 0.27s;
}
.mobile-menu-open .mobile-menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #216869;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 38px 36px 26px 36px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  color: #F8F8F8;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.18s, background 0.18s;
  border-radius: 6px;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #216869;
  background: #f2f9f1;
}
@media (max-width: 520px) {
  .mobile-nav {
    padding: 24px 16px 16px 16px;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
}
/* HERO SECTION */
.hero {
  background: #F8F8F8;
  border-bottom: 1px solid #ececec;
  padding: 68px 0 56px 0;
  margin-bottom: 40px;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -0.02em;
  color: #171717;
  margin-bottom: 8px;
}
.hero p {
  max-width: 540px;
  color: #232323;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .hero {
    padding: 40px 0 34px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}
main {
  width: 100%;
  flex: 1 1 auto;
}
.section, .about-preview, .services-preview, .testimonials, .contact-preview, .about-company, .team, .services-overview, .guarantee, .faq, .cta, .thank-you, .pricing-overview, .feature-grid, .features, .feature-item, .legal, .services-household, .household-benefits, .office-services, .office-benefits, .contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section, .about-preview, .services-preview, .testimonials, .contact-preview, .about-company, .team, .services-overview, .guarantee, .faq, .cta, .thank-you, .pricing-overview, .feature-grid, .features, .feature-item, .legal, .services-household, .household-benefits, .office-services, .office-benefits, .contact-details {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
}
/* FLEX AND GRID LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.feature-item {
  background: #fff;
  border-radius: 14px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 2px 18px 2px rgba(21,21,21,0.055),0 0.5px 2px rgba(21,21,21,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  filter: grayscale(100%) contrast(1.12);
}
.feature-item:hover {
  box-shadow: 0 6px 28px 4px rgba(40,45,42,0.14);
  transform: translateY(-4px) scale(1.01);
}
/* CARDS CONTAINERS */
.card-container, .service-grid, .pricing-table, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-item, .pricing-category, .faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 10px 1px rgba(20,21,21,0.05);
  padding: 24px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover, .service-item:hover, .pricing-category:hover, .faq-item:hover {
  box-shadow: 0 6px 24px 3px rgba(38,38,39,0.12);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .card-container, .service-grid, .pricing-table, .faq-list, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-item, .pricing-category, .faq-item, .feature-item {
    min-width: 0;
    width: 100%;
  }
}
.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;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 1px rgba(36,36,38,0.05);
  border-left: 5px solid #232E21;
  max-width: 630px;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card:hover {
  border-left: 5px solid #216869;
  box-shadow: 0 7px 24px 8px rgba(33,104,105,0.07);
}
.testimonial-card p {
  color: #1b1b1b;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta {
  color: #232E21;
  font-size: 1rem;
  opacity: 0.87;
  font-weight: 600;
}
/* Contacts Preview / Details */
.contact-preview ul, .contact-details ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-preview li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-preview img, .contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) contrast(1.1); 
  opacity: 0.84;
}
.info-note {
  background: #f2f9f1;
  color: #232323;
  border-left: 3px solid #216869;
  border-radius: 8px;
  padding: 18px 18px;
  margin-top: 18px;
  font-size: 1rem;
  opacity: 0.98;
}
/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74em 1.6em;
  font-size: 1.06em;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 2px 10px 0 rgba(33,34,33,0.09);
  border: none;
  margin-top: 8px;
  text-align: center;
}
.btn-primary {
  background: #232E21;
  color: #fff;
  border: 1.5px solid #232E21;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #216869;
  color: #fff;
  border-color: #216869;
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #fff;
  color: #232E21;
  border: 1.5px solid #232E21;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #F2F9F1;
  color: #216869;
  border-color: #216869;
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 500px) {
  .btn-primary, .btn-secondary {
    padding: 0.62em 1.1em;
    width: 100%;
    font-size: 1em;
  }
}
/* PRICING TABLE */
.pricing-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.pricing-category {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 2px rgba(21,21,21,0.045),0 0.5px 2px rgba(21,21,21,0.09);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing-category h3 {
  font-size: 1.17rem;
  color: #216869;
  margin-bottom: 10px;
}
.pricing-category ul {
  padding-left: 1.2em;
}
@media (max-width: 900px) {
  .pricing-table {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .pricing-table {
    flex-direction: column;
    gap: 14px;
  }
  .pricing-category {
    min-width: 0;
    width: 100%;
  }
}
/* FAQ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 10px 1px rgba(20,21,21,0.06);
  padding: 23px 15px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
}
.faq-item h3 {
  font-size: 1.13rem;
}
/* FOOTER */
footer {
  background: #222;
  color: #f6f6f6;
  font-size: 0.97rem;
  padding: 32px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #f2f9f1;
  opacity: 0.9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.17s;
  padding: 4px 2px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #216869;
  opacity: 1;
}
.brand-note {
  color: #bcbcbc;
  opacity: 0.68;
  font-size: 0.97rem;
}
/* LEGAL/INFORMATION SECTIONS */
.legal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px 4px rgba(40,45,42,0.045);
  margin-bottom: 60px;
  padding: 40px 22px 32px 22px;
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.1rem;
  margin-top: 26px;
  margin-bottom: 0.7em;
  color: #216869;
}
.legal ul {
  padding-left: 1.3em;
  margin-top: 0.5em;
}
.legal li {
  margin-bottom: 0.3em;
}
@media (max-width: 600px) {
  .legal {
    padding: 18px 4px 18px 4px;
  }
}
/* CTA SECTIONS & THANK YOU */
.cta .content-wrapper,
.thank-you .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .cta .content-wrapper,
  .thank-you .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
/* ANIMATIONS & TRANSITIONS */
.section, .hero, .feature-item, .card, .service-item, .testimonial-card, .faq-item, .cta, .about-company, .guarantee, .thank-you {
  animation: fadeInUp 0.67s cubic-bezier(.51,1.42,.17,.93);
}
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(28px);}
  100% {opacity: 1; transform: translateY(0);}
}
.btn-primary, .btn-secondary {
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.09s;
}
/* COOKIE BANNER 🔒*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232E21;
  color: #f2f2f2;
  box-shadow: 0 -6px 24px 0 rgba(36,36,38,0.08);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 14px;
  gap: 28px;
  font-size: 1.1rem;
  animation: cookie-in 0.48s cubic-bezier(.12,1.19,.36,1);
  transition: transform 0.32s, opacity 0.32s;
}
@keyframes cookie-in {
  0% {opacity: 0; transform: translateY(100%);}
  100% {opacity: 1; transform: translateY(0);}
}
.cookie-banner-content {
  max-width: 540px;
  margin-right: 20px;
  line-height: 1.5;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-settings-btn {
  font-size: 1em;
  padding: 0.44em 1.12em;
  border-radius: 28px;
  margin: 0;
}
.cookie-banner .btn-secondary {
  background: #f2f9f1;
  color: #232E21;
  border: 1.5px solid #232E21;
}
.cookie-banner .btn-secondary:hover { background: #e3ece4; }
.cookie-settings-btn {
  background: #fff;
  color: #216869;
  font-weight: 600;
  border: 1.5px solid #216869;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, border 0.15s;
}
.cookie-settings-btn:hover {
  background: #216869;
  color: #fff;
  border-color: #216869;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .cookie-banner-content {
    margin-right: 0;
    font-size: 1rem;
  }
}
/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,32,30,0.78);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.34s cubic-bezier(.1,1.2,.2,1);
}
@keyframes modal-in {
  0% {opacity: 0; transform: scale(0.93);}
  100% {opacity: 1; transform: scale(1);}
}
.cookie-modal-content {
  background: #fff;
  color: #232323;
  border-radius: 12px;
  padding: 38px 32px 28px 32px;
  min-width: 320px;
  max-width: 450px;
  box-shadow: 0 20px 40px 2px rgba(40,45,42,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #216869;
  margin-top: 0;
}
.cookie-modal-settings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1.08em;
  margin-bottom: 4px;
}
.cookie-modal-category label {
  font-weight: 500;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-toggle {
  width: 48px;
  height: 26px;
  background: #eee;
  border-radius: 18px;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.21s;
  border: 1px solid #c8c8c8;
}
.cookie-toggle:checked {
  background: #216869;
  border-color: #216869;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(20,20,20,0.09);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.18s;
}
.cookie-toggle:checked::after {
  left: 24px;
}
.cookie-modal-category.essential label { color: #232E21; opacity: 0.8; }
.cookie-modal-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #216869;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #232E21; }
@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 20px 9px 16px 13px;
    min-width: 0;
    max-width: 94vw;
  }
}
/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: #f8f8f8;
}
::-webkit-scrollbar-thumb {
  background: #232e21;
  border-radius: 4px;
}
/* SELECTION */
::selection { background: #216869; color: #fff; }
/* MISC */
hr {
  border: none;
  border-top: 1px solid #E2E2E2;
  margin: 2em 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
}
th, td {
  border: 1px solid #e9e9e9;
  padding: 10px 7px;
  font-size: 1em;
}
th {
  background: #f5f5f5;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #216869;
  text-align: left;
}
blockquote {
  border-left: 4px solid #232E21;
  padding: 12px 22px;
  background: #fafafa;
  opacity: .90;
  margin: 18px 0;
  font-style: italic;
  color: #232E21;
}
/* TYPO SCALE OVERRIDE FOR MONOCHROME SOPHISTICATION */
body, p, li, td {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
  line-height: 1.7;
  font-weight: 400;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.019em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.23rem; }
@media (max-width:600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.07rem; }
}
/* MONOCHROME SHADOWS, ELEGANCE */
.card, .testimonial-card, .feature-item, .faq-item, .service-item, .pricing-category {
  box-shadow: 0 2px 13px 4px rgba(33,34,33,0.035);
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .faq-item:hover, .service-item:hover, .pricing-category:hover {
  box-shadow: 0 6px 32px 7px rgba(33,34,33,0.11);
  transform: translateY(-2px) scale(1.01);
}
/* VISUAL HIERARCHY & SPACING */
.section > *, .content-wrapper > * {
  margin-bottom: 0.31em;
}
.section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}
/* SPACING FOR FLEX-LAYOUT ELEMENTS */
.card-container, .service-grid, .feature-grid, .faq-list, .content-grid {
  gap: 20px;
}
.feature-item, .card, .service-item, .faq-item {
  margin-bottom: 20px;
}
/* CRITICAL: ENSURE NO OVERLAP, NO GRID */
/* Only flex-based, with margins and gap for all groupings */

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