/* RESET & BASE TYPOGRAPHY (Vintage Retro flavor)  */
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.5;
  background: #F6EABE;
  color: #2C2A18;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
a {
  color: #B68F40;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2C2A18;
  text-decoration: underline;
}
::-webkit-scrollbar {
  width: 12px;
  background: #ECD59E;
}
::-webkit-scrollbar-thumb {
  background: #B68F40;
}

/* TYPOGRAPHY (Retro-inspired headings & font pairing) */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #2C2A18;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 1px 2px 0 #ECD59E, 0 1px 0 #B68F40;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 1px 2px 0 #ECD59E;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li, td {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3F3315;
  font-size: 1rem;
  line-height: 1.7;
}
strong { font-weight: bold; }

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff8e2;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 #dbc38c44;
}
@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

/* NAVIGATION BAR (Retro/Classic) */
header {
  background: #2C2A18;
  border-bottom: 8px solid #B68F40;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 16px 18px 16px;
  justify-content: center;
}
.main-nav > a {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #F6EABE;
  font-size: 1.08rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  background: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: #ECD59E;
  color: #2C2A18;
}
.main-nav > a.cta.primary {
  background: #B68F40;
  color: #fff;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.15rem;
  margin-left: 12px;
  border-radius: 10px;
  padding: 12px 22px;
  box-shadow: 2px 2px 0 #B68F40, 0 3px 16px 0 #00000028;
  border: 3px solid #FFF8E2;
  text-shadow: 0 1px 0 #b69236;
  transition: box-shadow 0.22s, background 0.22s, color 0.22s;
}
.main-nav > a.cta.primary:hover, .main-nav > a.cta.primary:focus {
  background: #a0782c;
  color: #FFF8E2;
  box-shadow: 1px 2px 0 #B68F40, 0 2px 10px 0 #231e123a;
}

/* Hide nav and show mobile burger menu on tablet and below */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  background: #B68F40;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  z-index: 120;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #8d6c28;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2C2A18;
  box-shadow: 0 3px 36px 4px #b68f4033;
  z-index: 200;
  transform: translateX(-120vw);
  transition: transform 0.34s cubic-bezier(.6, .2, .3, 1.1);
  width: 100vw;
  height: 100vh;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: #B68F40;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  margin: 18px 0 36px 28px;
  align-self: flex-start;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8d6c28;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  color: #F6EABE;
  padding: 12px 0;
  border-bottom: 2px dotted #B68F40;
  width: 100%;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECD59E;
  color: #2C2A18;
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* LAYOUT: Spacing, Cards, Section Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  background: #f1e3b4;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 #dbc38c44;
  padding: 22px 20px;
  border: 2px solid #B68F40;
  min-width: 240px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 34px 0 #b68f4055;
  transform: translateY(-4px) scale(1.021);
}
.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: #fff8e2;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 #b68f4020;
  border-left: 6px solid #B68F40;
  font-family: 'Roboto Slab', Georgia, serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #ecd59e;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 #dcc78a36;
  padding: 20px 16px;
}

/* Cards within .feature-grid or .service-cards */
.feature-grid > div, .service-cards > div, .service-list > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: #f1e3b4;
  border-radius: 14px;
  padding: 18px 20px 18px 20px;
  box-shadow: 0 1px 8px 0 #dcc78a22;
  border: 2px dashed #B68F40;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > div:hover, .service-cards > div:hover, .service-list > div:hover {
  box-shadow: 0 5px 24px 0 #b68f4033;
  border-color: #a0782c;
}
.feature-grid img, .service-cards img {
  width: 44px;
  margin-bottom: 12px;
}

/* ABOUT / BADGES */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-badges img {
  filter: sepia(0.36) contrast(1.1) hue-rotate(-10deg);
  height: 46px;
}

/* CTA BUTTONS */
.cta {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.17rem;
  padding: 13px 30px;
  border: none;
  border-radius: 12px;
  box-shadow: 1px 2px 0 #B68F40, 0 2px 10px 0 #dac2853d;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.19s, transform 0.13s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  cursor: pointer;
  display: inline-block;
}
.cta.primary {
  background: #B68F40;
  color: #fff;
  border: 2px solid #B68F40;
}
.cta.primary:hover, .cta.primary:focus {
  background: #a0782c;
  color: #f6eabe;
  box-shadow: 0 6px 18px 0 #b68f4040;
  transform: translateY(-2px) scale(1.02);
}
.cta.secondary {
  background: #fff8e2;
  color: #2C2A18;
  border: 2px solid #B68F40;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #B68F40;
  color: #FFF8E2;
  box-shadow: 0 7px 16px 0 #B68F4060;
}

/* TABLES (RETRO STYLING) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fffef6;
  margin: 20px 0 30px 0;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 #dcc78a22;
  overflow: hidden;
}
thead tr {
  background: #B68F40;
  color: #FFF8E2;
}
thead th {
  font-family: 'Roboto Slab', Georgia, serif;
  padding: 18px 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid #ECD59E;
}
tbody td {
  padding: 13px 10px;
  font-size: 1rem;
  border-bottom: 1px solid #ECD59E;
  background: #fff8e2;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) td {
  background: #f6e0ad;
}

/* FOOTER */
footer {
  background: #2C2A18;
  color: #f6eabe;
  border-top: 8px solid #B68F40;
  margin-top: 64px;
  padding: 24px 0 0 0;
}
footer .container {
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
  padding: 16px 0 0 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #ECD59E;
  font-size: 1rem;
  margin-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: #B68F40;
  text-decoration: underline;
}
footer img {
  margin-bottom: 10px;
}
footer p, footer a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #ECD59E;
}

/* UTILITY LAYOUT CLASSES FOR RESPONSIVE PATTERNS */
@media (max-width: 900px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    gap: 18px;
  }
}

/* TESTIMONIALS / REVIEW CARDS (RETRO BADGES & CONTRAST)  */
.testimonials-preview,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff8e2;
  border-left: 6px solid #B68F40;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 #b68f4020;
  padding: 22px 20px;
  max-width: 520px;
  flex: 1 1 290px;
  font-family: 'Roboto Slab', Georgia, serif;
  color: #2C2A18;
}
.testimonial-card strong {
  display: block;
  margin-top: 9px;
  color: #B68F40;
  font-size: 1.07rem;
  font-family: 'Roboto Slab', Georgia, serif;
}
.review-snippets ul, .third-party-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.review-snippets li {
  background: #ecd59e;
  border-radius: 12px;
  padding: 13px 18px;
  color: #2C2A18;
  font-weight: 600;
  font-size: 1.01rem;
  box-shadow: 0 1px 6px 0 #b68f4014;
  font-family: 'Roboto Slab',Georgia,serif;
}
.third-party-badges img {
  height: 40px;
  filter: sepia(0.43) hue-rotate(-12deg);
}
.third-party-badges span {
  font-weight: 700;
  color: #B68F40;
}

/* ACCORDION/FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff8e2;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #b68f4020;
  padding: 16px 18px;
  border-left: 4px solid #B68F40;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #2C2A18;
  color: #f6eabe;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -2px 30px 5px #b68f4022;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fadeInBanner 0.6s;
}
@keyframes fadeInBanner {
  from { transform: translateY(120px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.02rem;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 2px 7px #00000015;
  margin-right: 0;
  background: #B68F40;
  color: #fff;
  font-weight: 600;
  transition: background 0.15s, color 0.14s, transform 0.12s;
}
.cookie-banner button[data-type='settings'] {
  background: #fff8e2;
  color: #2C2A18;
  border: 2px solid #B68F40;
}
.cookie-banner button[data-type='settings']:hover {
  background: #B68F40;
  color: #fff8e2;
}
.cookie-banner button[data-type='accept']:hover, .cookie-banner button[data-type='accept']:focus {
  background: #a0782c;
}
.cookie-banner button[data-type='reject'] {
  background: #F6EABE;
  color: #2C2A18;
}
.cookie-banner button[data-type='reject']:hover {
  background: #B68F40;
  color: #fff8e2;
}

/* COOKIE MODAL (for preferences/settings) */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0; right: 0; bottom: 0;
  background: #00000099;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFF8E2;
  border-radius: 21px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 16px 40px 8px #2c2a182e;
  min-width: 310px;
  max-width: 97vw;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: slideDownModal 0.48s cubic-bezier(.4,1.22,.3,1.11);
}
@keyframes slideDownModal {
  from { transform: translateY(-80px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.cookie-modal h3 {
  font-family: 'Roboto Slab', Georgia,serif;
  color: #B68F40;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex; flex-direction: column;
  gap: 13px;
  margin: 18px 0 24px 0;
}
.cookie-modal .cookie-categories label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 1rem;
  color: #2C2A18;
}
.cookie-modal .cookie-categories input[type='checkbox'] {
  accent-color: #B68F40;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Roboto Slab', Georgia,serif;
  font-size: 1.02rem;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  background: #B68F40;
  color: #fff;
  font-weight: 600;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal button.secondary {
  background: #fff8e2;
  color: #2C2A18;
  border: 2px solid #B68F40;
}
.cookie-modal button.secondary:hover {
  background: #B68F40;
  color: #fff8e2;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 20px;
  background: none;
  color: #B68F40;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
}

/* LISTS & ELEMENTS */
ul, ol {
  margin: 0 0 0 22px;
  padding: 0 0 0 0;
  line-height: 1.74;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 6px;
  color: #3F3315;
  font-family: 'Open Sans', Arial,sans-serif;
}
ul li {
  list-style-type: disc;
}
ol li {
  list-style-type: decimal;
}

/* Misc & Patterns (Vintage details) */
body {
  background-color: #F6EABE;
  background-image: repeating-linear-gradient(135deg, #F6EABE 0px, #f3dfb0 6px, #F6EABE 14px);
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* DECORATIVE PART: borders & textures (retro flavor) */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 76px;
  height: 7px;
  background: #B68F40;
  border-radius: 2px;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .content-grid, .card-container, .feature-grid, .service-cards, .testimonial-list, .testimonials-preview { 
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch;
  }
  .feature-grid > div, .service-cards > div, .service-list > div {
    min-width: 0;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 36px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.29rem; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .testimonial-card, .card, .feature-item {
    min-width: 0;
    padding: 17px 10px;
    font-size: 1rem;
  }
}
@media (max-width: 440px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .cookie-modal {
    padding: 20px 3vw 22px 3vw;
    min-width: 0;
  }
}

/* Accessibility and selection colors (vintage effect) */
::selection {
  background: #B68F40;
  color: #fff8e2;
}

/* Animations for buttons */
button, .cta, a.cta {
  transition: box-shadow 0.18s, color 0.15s, background 0.17s, transform 0.14s;
}
button:active, .cta:active, a.cta:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px #2C2A18;
}

/* Map embed image */
.map-embed img {
  border: 2px dashed #B68F40;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 #dac28533;
  margin: 12px auto;
  max-width: 310px;
  display: block;
}

/* Patterned backgrounds for distinctive sections (optional vintage highlight) */
.about-summary, .step-by-step-guide, .infographic, .value-list {
  background: #efe2b8;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 1px 8px #2c2a1820;
  gap: 20px;
  margin-bottom: 20px;
}

/* MODAL & BANNER Z-INDEX */
.cookie-modal-overlay { z-index: 3100; }
.cookie-banner { z-index: 3000; }
.mobile-menu { z-index: 200; }

/* Ensure adequete gaps globally */
.card-container > *, .feature-grid > *, .service-cards > * {
  margin-bottom: 20px;
}
.content-wrapper > *, section > .container > * {
  margin-bottom: 20px;
}

/* END of CSS file */
