/* CSS RESET & BASELINE ----------------------- */
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,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F2F3F4;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
  display: inline-block;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #23272A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C0B283;
  outline: none;
}
::selection {
  background: #C0B283;
  color: #23272A;
}

/* TYPOGRAPHY SCALE --------------------------- */
h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 12px;
}
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  font-style: italic;
  font-size: 1.1rem;
  padding: 0 0 0 18px;
  border-left: 4px solid #C0B283;
  color: #23272A;
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #5A5D61;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* CONTAINER & LAYOUT UTILS ------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(60,54,41,0.05);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,39,42,0.06);
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(35,39,42,0.08);
  transform: translateY(-2px) scale(1.02);
}
.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 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FCFCFC;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,39,42,0.08);
  margin-bottom: 24px;
  min-height: 92px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(192,178,131, 0.10);
}
.testimonial-author {
  color: #23272A;
  font-weight: 600;
  margin-left: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 1px 4px rgba(35,39,42,0.06);
}

/****** HEADER & NAVIGATION ******/
header {
  background: #fff;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  box-shadow: 0 4px 18px -6px rgba(35,39,42,0.03);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.10rem;
  padding: 3px 8px;
  color: #23272A;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #F2F3F4;
  color: #C0B283;
}
.cta-button {
  background: #C0B283;
  color: #23272A;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 12px 36px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(192,178,131,0.08);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #23272A;
  color: #F2F3F4;
  box-shadow: 0 6px 32px rgba(35,39,42,0.12);
  transform: translateY(-1px) scale(1.03);
}

/****** HERO SECTION ******/
.hero {
  background: linear-gradient(120deg, #F2F3F4 90%, #E4E1D4 100%);
  padding: 56px 0 24px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  margin-bottom: 10px;
}

/****** FEATURES ******/
.features {
  margin-bottom: 60px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
.features .feature-grid > div {
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(35,39,42,0.05);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.16s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(192,178,131, 0.12);
}
.features img {
  height: 40px;
  width: 40px;
}
.features ul, .features ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features ul li, .features ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

/****** TESTIMONIALS & RATING ******/
.testimonials .testimonial-card {
  background: #FCFCFC;
  color: #23272A;
  border: 1px solid #E6E4DA;
  font-size: 1rem;
  margin-bottom: 20px;
}
.testimonials .rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 4px 0 0 0;
  font-size: 1.05rem;
  color: #C0B283;
}
.testimonials .rating-summary img {
  width: 28px;
  height: 28px;
}

/****** SERVICES / OFFERINGS ******/
.services ul, .services ol {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.services ul li, .services ol li {
  background: #fff;
  box-shadow: 0 1px 4px rgba(35,39,42,0.04);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services ul li img {
  width: 100px;
}

/****** CONTACT & CONTACT-INFO ******/
.contact-info {
  background: #F2F3F4;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.map, .business-hours {
  margin-top: 20px;
  padding: 14px 0;
  color: #555;
}

/****** PRICING TABLE ******/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 1.04rem;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #E4E1D4;
  padding: 12px 18px;
  text-align: left;
}
.pricing-table th {
  background: #FCFCFC;
  color: #23272A;
  font-weight: 600;
}
.pricing-table tr td {
  background: #fff;
}

/****** FAQ ACCORDION ******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.faq-accordion h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  cursor: pointer;
  background: #F2F3F4;
  border-radius: 8px;
  padding: 13px 18px;
  transition: background 0.14s;
}
.faq-accordion h3.active, .faq-accordion h3:hover {
  background: #C0B283;
  color: #23272A;
}
.faq-accordion div {
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 13px 20px;
  font-size: 1rem;
  color: #3a3b3d;
  display: none;
  border-top: 1px solid #E4E1D4;
}
.faq-accordion h3.active + div {
  display: block;
}

/****** QUICK LINKS ******/
.quick-links {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  font-size: 1.07rem;
  color: #5A5D61;
}
.quick-links a {
  color: #C0B283;
  text-decoration: underline;
}
.quick-links a:hover {
  color: #23272A;
}

/* FOOTER STYLES --------------------------- */
footer {
  background: #fff;
  border-top: 2px solid #eee;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0 32px 0;
  justify-content: space-between;
}
.footer-logo img {
  width: 48px;
  height: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: 'Oswald', Arial, sans-serif;
}
.footer-nav a {
  color: #23272A;
  font-size: 1.02rem;
}
.footer-nav a:hover {
  color: #C0B283;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.96rem;
  color: #555;
}

/****** LEGAL TEXT PAGES ******/
.footer.legal {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(60,54,41,0.05);
}

/********* MOBILE BURGER MENU ***********/
.mobile-menu-toggle {
  display: none;
  background: #C0B283;
  color: #23272A;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  padding: 4px 14px;
  margin-right: 12px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(192,178,131,0.14);
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #23272A;
  color: #F2F3F4;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 40px rgba(35,39,42,0.20);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: #F2F3F4;
  color: #23272A;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2002;
  box-shadow: 0 0.5px 8px rgba(35,39,42,0.06);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #C0B283;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 13px 8px;
  color: #23272A;
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 7px;
  transition: background 0.15s, color 0.14s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C0B283;
  color: #fff;
}
@media (max-width: 1100px) {
  .footer-wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 950px) {
  .header-wrapper nav {
    gap: 18px;
  }
  .section, .footer.legal {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .header-wrapper nav,
  .header-wrapper .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  .header-wrapper {
    padding-right: 56px;
  }
  .content-grid, .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1rem;
  }
  .section, .footer.legal {
    padding: 24px 8px;
  }
  .card {
    padding: 14px 8px;
  }
  .footer-wrapper {
    padding: 28px 0 16px 0;
  }
  .hero {
    padding: 36px 0 14px 0;
  }
}

/* TRANSITIONS, MICRO-INTERACTIONS ETC. */
button, .cta-button {
  transition: background 0.18s, color 0.14s, box-shadow 0.18s, transform 0.15s;
}

/* COOKIE CONSENT BANNER ------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #23272A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 10vw 18px 10vw;
  box-shadow: 0 -6px 32px 0 rgba(35,39,42,0.15);
  font-size: 1rem;
  gap: 22px;
  flex-wrap: wrap;
  transition: transform 0.3s cubic-bezier(.86,0,.07,1), opacity 0.2s;
}
.cookie-banner.closed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 22px;
  padding: 9px 24px;
  font-size: 1.03rem;
  font-family: 'Oswald', Arial, sans-serif;
  cursor: pointer;
  font-weight: 500;
}
.cookie-banner .accept {
  background: #C0B283;
  color: #23272A;
}
.cookie-banner .reject {
  background: #fff;
  color: #23272A;
  border: 1.5px solid #C0B283;
}
.cookie-banner .settings {
  background: none;
  color: #C0B283;
  border: 1.5px solid #C0B283;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  filter: brightness(0.94);
  box-shadow: 0 4px 14px 0 rgba(192,178,131,0.12);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 12px 15px 12px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* COOKIE MODAL PREFERENCES --------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2501;
  background: rgba(35,39,42,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #23272A;
  padding: 38px 22px 24px 22px;
  border-radius: 16px;
  max-width: 410px;
  width: 90vw;
  box-shadow: 0 14px 64px rgba(35,39,42,0.13);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2502;
  position: relative;
  opacity: 1;
  animation: fadein 0.2s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
}
.cookie-modal label {
  font-size: 1.05rem;
  flex: 1;
}
.cookie-modal input[type="checkbox"]:disabled + label {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 15px;
  color: #23272A;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-close:focus,
.cookie-modal .cookie-modal-close:hover {
  color: #C0B283;
  background: #F2F3F4;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 22px;
  padding: 9px 24px;
  font-size: 1.03rem;
  font-family: 'Oswald', Arial, sans-serif;
  cursor: pointer;
  font-weight: 500;
  border: none;
}
.cookie-modal .accept {
  background: #C0B283;
  color: #23272A;
}
.cookie-modal .reject {
  background: #fff;
  color: #23272A;
  border: 1.5px solid #C0B283;
}
.cookie-modal .save {
  background: #23272A;
  color: #fff;
}
.cookie-modal .accept:hover,
.cookie-modal .save:hover {
  background: #23272A;
  color: #fff;
}
.cookie-modal .reject:hover {
  background: #C0B283;
  color: #23272A;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 3vw 12px 3vw;
    max-width: 99vw;
  }
}

/* SCROLLBAR CLEANUP for modern browsers */
body {
  scrollbar-color: #C0B283 #F2F3F4;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F2F3F4;
}
::-webkit-scrollbar-thumb {
  background: #C0B283;
  border-radius: 8px;
}

/* --------- END OF FILE --------- */