/* CSS 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.6;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
/* CUSTOM PROPERTIES */
:root {
  --color-primary: #181818;
  --color-secondary: #f5f5f5;
  --color-surface: #fff;
  --color-border: #E0E0E0;
  --color-text: #191919;
  --color-subtle: #AAA;
  --color-accent: #222;
  --color-gray-dark: #353535;
  --brand-primary: #3B3329;
  --brand-secondary: #EFCB8B;
  --brand-accent: #D7E9C4;
  --shadow: 0 2px 20px 0 rgba(40,40,40,0.07);
  --radius: 10px;
  --radius-lg: 18px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-primary: #fff;
    --color-secondary: #181818;
    --color-surface: #202020;
    --color-border: #363636;
    --color-text: #eee;
    --color-subtle: #555;
    --color-accent: #fff;
    --color-gray-dark: #d5d5d5;
  }
}
/* TYPOGRAPHY */
body, html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--color-surface);
  color: var(--color-text);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, ul, ol {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
}
strong, b {
  color: var(--color-primary);
}
a {
  text-underline-position: under;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: var(--color-accent);
}
/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* HEADER */
header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 74px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 50px;
  max-width: 160px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
}
.main-nav a {
  color: var(--color-primary);
  padding: 7px 9px;
  border-radius: var(--radius);
  transition: background 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
}
.cta-btn {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 11px 26px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, color 0.16s, box-shadow 0.25s;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 6px 32px 0 rgba(40,40,40,0.10);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-left: 14px;
  border: 1px solid var(--color-border);
  transition: background 0.13s,border 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(30,30,30,0.93);
  color: #fff;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.73,.13,.13,.96);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 26px 16px 0;
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 0px 14px 0 rgba(0,0,0,0.07);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 18px 36px;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.01em;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--brand-secondary);
}
@media (max-width: 990px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 850px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* LAYOUT UTILS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 0;
}
.text-section {
  max-width: 750px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 20px 26px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > div {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 240px;
  box-shadow: 0 2px 8px 0 rgba(80,80,80,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.24s, border 0.19s;
}
.feature-grid > div:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 22px 0 rgba(60,60,60,0.11);
}
.feature-grid h3 {
  margin-bottom: 5px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.testimonial-card {
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px 0 rgba(100,100,100,0.05);
  padding: 20px 36px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 650px;
  transition: box-shadow 0.19s;
  color: #232323;
}
.testimonial-card strong {
  color: var(--brand-primary);
  margin-left: auto;
  font-size: 1.11em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(50,50,50,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* BUTTONS & INTERACTIONS */
button, .cta-btn {
  transition: background 0.16s, color 0.14s, box-shadow 0.17s, outline 0.12s;
}
button:active, .cta-btn:active {
  transform: scale(0.96);
}
/* LISTS */
ul, ol {
  margin: 12px 0 16px 20px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 7px;
  color: var(--color-text);
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
}
ul li:before {
  content: '\25AA';
  color: var(--brand-primary);
  font-size: 0.7em;
  position: absolute;
  left: 0;
  top: 8px;
}
.content-wrapper ul, .text-section ul {
  margin-top: 10px;
}
/* SECTION SPACING */
section {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  .section, section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
}
/* FOOTER */
footer {
  color: #fff;
  padding: 30px 0 10px 0;
  font-size: 1.07rem;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 4px;
}
footer a {
  color: #f2f2f2;
  opacity: 0.92;
  transition: color .16s, opacity .11s;
}
footer a:hover, footer a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.82;
}
.footer-brand img {
  height: 34px;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-social img {
  height: 28px;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.75;
  transition: opacity .14s, filter .13s;
}
.footer-social img:hover {
  opacity: 1;
  filter: grayscale(0);
}
/* ICONS (decorative style for icons in lists/contacts) */
li img[alt] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.77;
}
/* RESPONSIVE FLEX LAYOUTS */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .testimonial-card, .card {
    padding: 18px 10px 18px 12px;
  }
  .feature-grid > div {
    padding: 19px 10px;
  }
  .footer-nav, .footer-legal {
    gap: 9px;
    font-size: 0.98rem;
  }
  .footer-brand img {
    height: 22px;
  }
}
/* MICRO-ANIMATIONS */
.cta-btn, .feature-grid > div, .testimonial-card, .card {
  transition: box-shadow 0.18s, background 0.13s, color 0.13s, border 0.13s;
}
.cta-btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 1px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px 0 rgba(40,40,40,0.12);
  border-color: var(--brand-secondary);
}
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #232222;
  color: #fff;
  box-shadow: 0 -2px 14px 0 rgba(80, 80, 80, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 22px 20px;
  font-size: 1.08rem;
  animation: cookiebanner-up 0.62s cubic-bezier(.44,.34,.23,.99);
}
@keyframes cookiebanner-up {
  0% { transform: translateY(120px); opacity: 0; }
  80% { opacity: 1; transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.cookie-banner button {
  background: var(--color-primary);
  color: var(--brand-secondary);
  font-family: 'Quicksand', Arial, sans-serif;
  border-radius: var(--radius);
  border: none;
  padding: 8px 20px;
  margin: 0 8px;
  font-weight: bold;
  font-size: 1.10rem;
  outline: none;
  box-shadow: none;
  transition: background .21s, color .17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-secondary);
  color: var(--color-primary);
}
.cookie-banner button.reject {
  background: #383838;
  color: #ccc;
}
.cookie-banner button.reject:hover {
  background: #232222;
  color: var(--brand-secondary);
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 7000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.33s linear;
}
@keyframes cookiefadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #151515;
  border-radius: 22px;
  padding: 38px 30px 30px 30px;
  min-width: 325px;
  max-width: 430px;
  box-shadow: 0 12px 54px 0 rgba(32,32,32,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiepopin .49s cubic-bezier(.51,.03,.46,.97);
}
@keyframes cookiepopin {
  0% { opacity: 0; transform: scale(0.89) translateY(45px); }
  80% { transform: scale(1.04) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  font-size: 1.42rem;
  margin-bottom: 9px;
  color: var(--color-primary);
}
.cookie-modal-content label {
  font-size: 1.10rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal-content input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--brand-primary);
  border-radius: 6px;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.13s;
}
.cookie-modal-content input[type="checkbox"]:checked {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-modal-content input[type="checkbox"]:checked:after {
  content: '\2713';
  font-size: 1.1em;
  color: #fff;
  position: absolute;
  left: 4px;
  top: -2px;
}
.cookie-modal-content .cookie-essentials {
  font-size: 1.01rem;
  margin-bottom: 18px;
  color: var(--color-subtle);
}
.cookie-modal-action {
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  font-size: 1.3rem;
  color: #ccc;
  position: absolute;
  top: 13px; right: 24px;
  padding: 0;
  border: none;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: var(--brand-primary);
}
@media (max-width: 520px) {
  .cookie-modal-content {
    min-width: 0;
    max-width: 98vw;
    padding: 24px 7vw 22px 7vw;
  }
}
/* FORMS - not prominent in provided html but base styling */
input, textarea {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 15px;
  width: 100%;
  transition: border 0.14s, background 0.18s;
}
input:focus, textarea:focus {
  border-color: var(--brand-secondary);
  outline: 2px solid var(--brand-secondary);
  background: #fff;
}
label {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 7px;
}
/* FLASH/NICE EFFECTS */
::selection {
  background: var(--color-primary);
  color: var(--brand-secondary);
}
::-webkit-selection {
  background: var(--color-primary);
  color: var(--brand-secondary);
}
/* MISC/UTILITY */
.sr-only {
  position: absolute;
  width: 0.5px;
  height: 0.5px;
  padding: 0;
  margin: -0.5px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* HIGH CONTRAST FOR MONOCHROME_SOPHISTICATED */
@media (max-width:450px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}

/* --- END --- */