/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #223A23;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/* === BRAND VARIABLES === */
:root {
  --brand-primary: #223A23;
  --brand-secondary: #8E5C2E;
  --brand-accent: #F8F3E6;
  --shadow-light: 0 2px 12px rgba(34, 58, 35, 0.07);
  --radius: 12px;
  --header-height: 72px;
  --color-text-dark: #223A23;
  --color-bg-light: #fff;
  --color-grey: #E6E3DC;
  --font-display: 'Alice', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}


/* === TYPOGRAPHY === */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.14;
  margin-bottom: 16px;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--brand-primary);
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
p, ul li, ol li, table td, table th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: var(--brand-primary);
}
.subheadline {
  color: var(--brand-secondary);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/* Typography scale for sections */
.section h2 {
  font-size: 2rem;
}
.section h3 {
  font-size: 1.25rem;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card & Card Container --- matches flexbox rules */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(34, 58, 35, 0.09);
  transform: translateY(-2px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--brand-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  max-width: 540px;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--brand-secondary);
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features ul,
.services ul,
.about-short ul,
.about ul,
.about-special-offers ul,
.why-us ul,
.contact-info ul,
.contact-overview ul,
.next-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: flex-start;
}
.features ul li,
.services ul li,
.why-us ul li,
.about-short ul li,
.about ul li,
.about-special-offers ul li,
.contact-info ul li,
.contact-overview ul li,
.next-steps ul li {
  background: var(--color-bg-light);
  padding: 20px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features ul li img,
.services ul li img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
.features ul li:hover,
.services ul li:hover {
  box-shadow: 0 6px 18px rgba(34,58,35,0.14);
  transform: translateY(-2px) scale(1.012);
}

/* === BUTTONS === */
.cta-button,
.button,
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: #fff;
  background: var(--brand-primary);
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(34,58,35,0.07);
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.cta-button:hover, .cookie-btn:hover, .button:hover {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,58,35,0.10);
  transform: translateY(-1px) scale(1.015);
}
.cta-button:focus, .cookie-btn:focus, .button:focus {
  outline: 2px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}
.button-outline {
  background: transparent;
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
.button-outline:hover {
  background: var(--brand-secondary);
  color: #fff;
}

/* === HEADER NAVIGATION === */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
header img {
  height: 44px;
  width: auto;
  margin-right: 36px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
  opacity: 0.87;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.23s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
  opacity: 1.0;
}
header .cta-button {
  margin-left: 32px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  border-radius: 6px;
  padding: 6px 12px;
  margin-left: 16px;
  transition: background 0.2s;
  z-index: 34;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-grey);
}
/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,58,35,0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.53,.09,.35,1.25);
  z-index: 120;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.25rem;
  margin-left: 24px;
  margin-bottom: 26px;
  border: none;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-display);
  padding: 10px 0;
  opacity: 0.94;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.19s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
  opacity: 1.0;
}

/***** HERO SECTION *****/
.hero {
  background: var(--brand-accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 56px 0 40px 0;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-light);
  margin-bottom: 48px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  color: var(--brand-primary);
}
.hero .cta-button {
  margin-top: 24px;
  background: var(--brand-secondary);
}
.hero .cta-button:hover {
  background: var(--brand-primary);
}

/* === FEATURES, SERVICES, ABOUT, MISC SECTIONS === */
.features, .services, .about, .about-short, .about-history, .about-special-offers, .privacy-policy,
.gdpr-section, .cookie-policy, .terms-of-use, .contact-info, .contact-overview, .why-us, .thank-you, .next-steps {
  background: var(--color-bg-light);
  box-shadow: var(--shadow-light);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features ul li img,
.why-us .trust-signals img,
.contact-overview ul li img {
  filter: grayscale(7%) brightness(0.98);
}
.why-us .trust-signals {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 18px;
  align-items: center;
}
.why-us .trust-signals span {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 12px;
  color: var(--brand-primary);
  background: var(--brand-accent);
  border-radius: 7px;
  padding: 8px 12px;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}
thead, th {
  background: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
}
th, td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--color-grey);
}
tr:last-child td {
  border-bottom: none;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: var(--shadow-light);
  padding: 28px 0 18px 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--brand-primary);
  opacity: 0.85;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  opacity: 1.0;
}
footer span {
  font-size: 0.95rem;
  color: var(--brand-primary);
  opacity: 0.6;
  display: block;
  text-align: center;
}

/* === FORMS (if any) === */
input, textarea, select {
  background: #fff;
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 16px;
  transition: border 0.15s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--brand-primary);
  background: var(--brand-accent);
}
label {
  font-size: 1rem;
  margin-top: 10px;
  display: block;
  color: var(--brand-primary);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-accent);
  box-shadow: 0 -4px 22px rgba(34,58,35,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 26px 18px 22px 18px;
  z-index: 9999;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s;
}
.cookie-banner[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  color: var(--brand-primary);
  max-width: 820px;
  flex: 1 1 340px;
}
.cookie-banner .cookie-btn {
  background: var(--brand-primary);
  color: #fff;
  margin-left: 0;
  margin-right: 10px;
  font-size: 0.99rem;
  min-width: 120px;
}
.cookie-banner .cookie-btn.button-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner .cookie-btn.button-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* COOKIE BANNER - SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,58,35,0.78);
  z-index: 11100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.35s;
}
.cookie-modal-overlay[hidden] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(34,58,35,0.16);
  max-width: 380px;
  padding: 30px 22px 26px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  animation: modal-in 0.38s cubic-bezier(.19,.98,.68,.99);
}
@keyframes modal-in {
  0% { transform: translateY(80px) scale(0.98); opacity:0; }
  73% { transform: translateY(-11px) scale(1.007); opacity:1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #EEE;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"]:not([disabled]) {
  accent-color: var(--brand-primary);
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: var(--brand-secondary);
  cursor: not-allowed;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  width: 100%;
}
.cookie-modal .close-cm {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.55rem;
  color: var(--brand-secondary);
  cursor: pointer;
}

/* === MISCELLANEOUS + HELPER CLASSES === */
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

.customer-support-info {
  background: var(--brand-accent);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 22px;
  box-shadow: 0 0 0.5rem 0.02rem rgba(34,58,35,0.06);
  color: var(--brand-primary);
  font-size: 1.01rem;
}
.interactive-map-overview {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--brand-accent);
  border-radius: 7px;
  box-shadow: var(--shadow-light);
}
.interactive-map-overview img {
  width: 36px; height: 36px;
}

/******************* RESPONSIVE / MOBILE FIRST ********************/
@media (max-width: 1100px) {
  .container { max-width: 950px; }
}
@media (max-width: 900px) {
  .container { max-width: 730px; }
  .hero h1 { font-size: 2.05rem; }
  .section { padding: 32px 12px; }
}
@media (max-width: 768px) {
  :root { --header-height: 62px; }
  .container { max-width: 98vw; padding: 0 9px; }
  header .container {
    height: var(--header-height);
    flex-wrap: wrap;
    padding: 0 9px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 34px 0 26px 0;
    margin-bottom: 34px;
    border-radius: 0 0 18px 18px;
  }
  .content-grid,
  .card-container,
  .features ul,
  .about ul,
  .about-special-offers ul,
  .why-us ul,
  .services ul,
  .next-steps ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features ul li,
  .about ul li,
  .about-special-offers ul li,
  .why-us ul li,
  .services ul li,
  .next-steps ul li {
    min-width: 0;
    margin-bottom: 16px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .about-short .container,
  .about .container,
  .section .container {
    padding: 0 7px;
  }
}
@media (max-width: 540px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.19rem; }
  h3, .h3 { font-size: 1.13rem; }
  .section, .features, .services, .about, .about-short, .about-history, .privacy-policy, .cookie-policy, .terms-of-use, .gdpr-section, .contact-info, .contact-overview, .why-us, .thank-you, .next-steps {
    padding: 20px 3px;
  }
  .hero { padding: 21px 0 9px 0; }
  .footer-nav { gap: 8px; flex-wrap: wrap; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 18px 4px 15px 4px; font-size: 0.97rem; }
  .cookie-banner .cookie-btn { min-width: 74px; padding: 9px 12px; font-size: 0.94rem; }
}

/******************* VISUAL ENHANCEMENTS ***********************/
@media (hover: hover) {
  .cta-button:hover, .cookie-btn:hover, .button:hover, .main-nav a:hover, .footer-nav a:hover, .mobile-menu-close:hover {
    filter: brightness(0.95) saturate(1.18);
  }
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

/* ======= SCROLLBAR minimal ====== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 6px;
}
/* ======== TRANSITIONS for card hover, menu, buttons, etc ====== */
.card, .testimonial-card, .features ul li, .services ul li {
  transition: box-shadow 0.18s, transform 0.13s;
}

/********** Z-INDEX LAYERS ***********/
header { z-index: 30; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 11100; }

/**** PREVENT OVERLAPPING ****/
.section, .card, .testimonial-card, .features ul li, .services ul li {
  margin-bottom: 20px;
}
/**** END minimalist brand CSS ****/
