/* =======================================================================
Normalize & CSS Reset
======================================================================= */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F5F5;
  color: #2D2424;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1em 1.5em; padding: 0; }
a { text-decoration: none; color: #19304A; transition: color 0.2s; }
a:hover, a:focus { color: #DAA520; }
table { border-collapse: collapse; width: 100%; }
thead th { background: #e3cfa0; color: #19304A; font-weight: bold; }
th, td { padding: 11px 16px; border-bottom: 1px solid #e3cfa0; text-align: left; }
tbody tr:nth-child(odd) { background: #faf6f0; }
tbody tr:nth-child(even) { background: #F5F5F5; }

/* =======================================================================
Vintage Retro Brand Colors & Typography
======================================================================= */
:root {
  --primary: #19304A;
  --secondary: #DAA520;
  --accent: #F5F5F5;
  --retro-red: #CC5752;
  --retro-green: #507552;
  --retro-blue: #338CA0;
  --retro-orange: #EB9D36;
  --retro-brown: #794C2D;
  --retro-bg: #F9F4E9;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

body {
  background: var(--retro-bg);
  color: #2D2424;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 1px 2px 0px #FFF3D6, 0 2px 6px rgba(152,115,75,0.12);
  letter-spacing: 0.02em;
}
h1 { font-size: 40px; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 28px; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 22px; margin-bottom: 12px; }
h4, h5, h6 { font-size: 18px; }
p, li, td, th { font-size: 16px; }
strong { font-weight: 700; }

/* Subtly rounded corners to all cards/blocks */
.card, .testimonial-card, .feature-grid > div, .service-list > div, .faq-accordion li, table, .cookie-banner, .cookie-modal {
  border-radius: 14px;
}

/* Section, Grid & Spacing Patterns
======================================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbee;
  box-shadow: 0 2px 14px 0 rgba(60,40,15,0.07);
  border: 2px solid #e3cfa0;
  padding: 28px;
  min-width: 280px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(60,40,15,0.11);
  transform: translateY(-2px) scale(1.012);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 32px;
  border: 2px dashed #DAA520;
  background: #fffbee;
  color: #2E2B23;
  box-shadow: 0 2px 10px 0 rgba(200,160,100,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  font-size: 18px;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-red);
  font-size: 16px;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(244,205,130,0.18);
  border-color: var(--retro-orange);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbee;
  border: 2px solid #e3cfa0;
  box-shadow: 0 1px 7px 0 rgba(153,110,50,0.12);
  padding: 28px 20px;
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fffbee;
  border: 2px solid #e3cfa0;
  box-shadow: 0 1px 7px 0 rgba(153,110,50,0.10);
  padding: 25px 18px 22px 18px;
  margin-bottom: 24px;
  margin-right: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.13s, border-color 0.13s;
}
.feature-grid > div:hover {
  border-color: var(--retro-orange);
  box-shadow: 0 4px 16px 0 rgba(231,133,33,0.09);
}

.testimonial-slider-preview {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.service-list > div {
  flex: 1 1 210px;
  min-width: 205px;
  background: #FAF7ED;
  border: 2px solid #e3cfa0;
  box-shadow: 0 2px 11px 0 rgba(205,170,120,0.09);
  padding: 20px 15px;
  margin-bottom: 20px;
  border-radius: 13px;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.service-list > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 5px 16px 0 rgba(255,210,85,0.11);
}

.faq-accordion li {
  background: #FFEBC4;
  border: 2px dotted #DAA520;
  margin-bottom: 20px;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.5;
  transition: box-shadow 0.11s, border-color 0.11s;
}
.faq-accordion li:hover {
  border-color: var(--retro-orange);
  box-shadow: 0 2px 9px 0 rgba(255,185,60,0.09);
}

/* .container and .content-wrapper for layout */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* Header & Navigation ======================================================================= */
header {
  width: 100%;
  background: #F3D5A9;
  box-shadow: 0 2px 14px 0 rgba(153,110,50,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0 12px 0;
  min-height: 66px;
  position: relative;
  z-index: 110;
}
header > a img {
  height: 54px;
  margin-right: 22px;
  margin-left: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.18s, background 0.16s, border-radius 0.11s;
  border-radius: 7px;
}
header nav a:hover, header nav a.active {
  background: #FFEBC4;
  color: var(--retro-brown);
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  margin-left: auto;
  margin-right: 15px;
  color: #fff;
  background: linear-gradient(90deg, #DAA520 85%, #EB9D36 100%);
  font-weight: bold;
  font-size: 17px;
  border: none;
  border-radius: 13px;
  padding: 12px 34px;
  box-shadow: 0 2px 14px 0 rgba(210,155,40,0.11);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-shadow: 1px 1px 0 #bb993b1e;
  transition: background 0.18s, transform 0.15s, box-shadow 0.13s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg,#EB9D36 73%,#DAA520 100%);
  transform: translateY(-1px) scale(1.022);
  box-shadow: 0 6px 18px 0 rgba(210,155,40,0.18);
  color: #794C2D;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  font-size: 32px;
  border: none;
  margin-left: 24px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover { color: var(--secondary); }

/* Mobile Menu Overlay ======================================================================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #f3e7c2;
  z-index: 1210;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.9,.1,.19,1.6), opacity 0.21s;
  box-shadow: -6px 0 36px 0 rgba(185,144,60,0.17);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 32px;
  border: none;
  align-self: flex-end;
  margin: 28px 22px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: #EB9D36; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 30px auto;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #19304A;
  font-size: 22px;
  padding: 16px 12px 10px 14px;
  border-radius: 7px;
  text-align: left;
  width: 85vw;
  max-width: 340px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEBC4;
  color: #794C2D;
}

/* Main HERO Section ======================================================================= */
.hero {
  background: repeating-linear-gradient(-45deg, #fff8dc, #fff8dc 27px, #fbe6a6 27px, #fbe6a6 54px);
  margin-bottom: 48px;
  padding: 44px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 670px;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 38px;
  color: #CC5752;
  text-shadow: 2px 3px 0px #FFEBC4, 0 7px 32px #fadfbc70;
}
.hero p {
  font-size: 20px;
  color: #38201e;
  margin-bottom: 20px;
}
.hero .cta-button {
  font-size: 19px;
  margin-top: 10px;
}

/* Contact Info Block ======================================================================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
}

/* -----------------------------------------------------------------------
Patterned/Decorative Backgrounds (sections, testimonial area)
---------------------------------------------------------------------- */
section {
  background: none;
  border-radius: 0px;
  margin-bottom: 40px;
  padding: 0px;
}
main > section {
  background: #fffbee;
  box-shadow: 0 2px 21px 0 rgba(153,110,50,0.06);
  border-radius: 18px;
  margin-bottom: 48px;
  padding: 24px 0 20px 0;
}
main > section:nth-child(2n) {
  background: #fffaef;
}

/* List styling: Retro bullets and spacing */
ul {
  margin-bottom: 22px;
}
ul li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 13px; height: 13px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0; top: 3px;
  box-shadow: 0 0 1px rgba(190,145,44, 0.23);
}
ul.faq-accordion li:before {
  background: #CC5752;
}

/* Table Styling ======================================================================= */
table {
  background: #FFEBC4;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px 0 rgba(215,182,100,0.07);
  border: 1px solid #ECD8B0;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Footer ======================================================================= */
footer {
  background: #FFD187;
  color: var(--primary);
  padding: 28px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer nav a {
  color: #19304A;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
}
footer nav a:hover {
  color: #CC5752;
}
footer p {
  font-size: 15px;
  color: #854B19;
}

/* Cookie Banner ======================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1300;
  background: #FFEBC4;
  color: #19304A;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 -2px 16px 0 rgba(210,175,85,0.09);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid #DAA520;
  font-size: 15px;
  transition: transform 0.33s cubic-bezier(.92,.2,.15,1.24), opacity 0.21s;
}
.cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  font-size: 15px;
  border-radius: 8px;
  margin-left: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 0px;
  background: #19304A;
  color: #fff;
  transition: background 0.14s, color 0.12s;
}
.cookie-banner .accept-all {
  background: var(--primary);
}
.cookie-banner .reject-all {
  background: #CC5752;
}
.cookie-banner .cookie-settings {
  background: #fffbee;
  color: var(--primary);
  border: 2px solid #DAA520;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #DAA520;
  color: #222;
}

/* Cookie Preferences Modal ======================================================================= */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(255,226,150,0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1410;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  background: #fffbee;
  border: 3px solid #DAA520;
  border-radius: 14px;
  box-shadow: 0 5px 32px 0 rgba(185,135,45,0.13);
  padding: 34px 30px 28px 30px;
  width: min(92vw, 425px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h2 {
  margin-bottom: 18px;
  color: #19304A;
  font-size: 24px;
}
.cookie-mod-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-mod-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #7c5612;
}
.cookie-mod-cat-row input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #DAA520;
  background: #fffbee;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-mod-cat-row input[type="checkbox"]:checked {
  background: #DAA520;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-close {
  background: #CC5752;
  position: absolute;
  top: 10px; right: 16px;
  font-size: 22px;
  width: 35px; height: 35px;
  border-radius: 50%;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #DAA520;
  color: #222;
}

/* Review/Testimonials Specific Contrast ======================================================== */
.testimonial-grid .testimonial-card,
.testimonial-slider-preview .testimonial-card {
  background: #fffbee;
  color: #222;
  border: 2px dashed #DAA520;
}
.testimonial-grid .testimonial-card strong {
  color: #CC5752;
}

/* Animations and Micro-interactions ======================================================== */
.cta-button,
.card, .feature-grid > div, .testimonial-card, .service-list > div, .faq-accordion li,
.mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.14s, background 0.13s, transform 0.14s, border-color 0.13s, color 0.12s;
}
/* Active/focus ring */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #19304A;
  outline-offset: 2px;
}

/* Responsive/mobile styles =================================================================== */
@media (max-width: 1024px) {
  .container { max-width: 92vw; }
  .feature-grid > div, .service-list > div {
    min-width: 180px;
    flex: 1 1 140px;
  }
}
@media (max-width: 900px) {
  header nav,
  .cta-button { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .container { max-width: 96vw; }
  .footer .container { flex-direction: column; gap: 16px; }
  .feature-grid, .service-list { justify-content: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 21px; }
  h3 { font-size: 17px; }
  .hero .content-wrapper { max-width: 97vw; }
  .section { padding: 26px 8px; }
  main > section { padding: 14px 0 8px 0; margin-bottom: 30px; }
  .container { padding: 0 5px; }
  .content-wrapper {
    gap: 20px;
    padding: 22px 0 0 0;
  }
  .feature-grid { gap: 13px; }
  .feature-grid > div, .service-list > div { min-width: 120px; padding: 12px 7px; }
  .testimonial-grid, .testimonial-slider-preview {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 15px; }
  .card, .testimonial-card { padding: 12px 8px; }
  .faq-accordion li { padding: 10px 9px; font-size: 15px; }
  .cookie-modal .modal-content { width: min(97vw, 358px); padding: 20px 10px 18px 10px; }
}
@media (max-width: 540px) {
  .container { padding: 0 2px; }
  main > section { padding: 6px 0 3px 0; margin-bottom: 19px; }
  h1 { font-size: 21px; }
}

/* Hide overflow on mobile menu when open */
body.mobile-menu-open { overflow: hidden; }

/* Decorative vintage patterns (section borders) ======================= */
.section {
  /* Use classic retro border for featured sections */
  border: 2px dotted #EB9D36;
  background: #fffbee;
  box-shadow: 0 4px 28px 0 rgba(220,190,97,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
main > section.hero {
  background: repeating-linear-gradient(-45deg, #fff8dc, #fff8dc 30px, #fbe6a6 30px, #fbe6a6 60px);
}
main > section:not(.hero) {
  background: #F9F4E9;
}

/* Misc utility classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 32px; }

/* Form styles (if any forms used) ==================================== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  padding: 9px 13px;
  background: #fffbee;
  border: 2px solid #e3cfa0;
  border-radius: 7px;
  transition: border-color 0.15s, background 0.12s;
}
input:focus, select:focus, textarea:focus {
  border-color: #DAA520;
  background: #FFFDE7;
  outline: none;
}

/* ----------------------------------------------------------------- */
/* End of stylesheet */
