/* === 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100%;
  background: linear-gradient(135deg, #E5E0DA 0%, #FFFFFF 100%);
  color: #24314A;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #BC8429;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #24314A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24314A;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.625rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #324563;
}
strong {
  font-weight: 700;
}
small, .footer-bottom {
  font-size: 0.9rem;
  color: #666;
}
address {
  font-style: normal;
  font-size: 1rem;
  color: #324563;
  margin-bottom: 16px;
}

/* === Containers & Layout === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(50,69,99,0.08);
}

/* === Header & Navigation === */
header {
  background: linear-gradient(90deg, #324563 0%, #24314A 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(36,49,74, 0.08);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #BC8429;
  color: #24314A;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #bc8429 0%, #e5e0da 100%);
  color: #24314A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  font-size: 1.125rem;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(188,132,41,0.06);
  cursor: pointer;
  transition: background 0.3s, color 0.2s, transform 0.2s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #e5e0da 0%, #bc8429 100%);
  color: #24314A;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  display: inline-block;
  background: #324563;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  margin-top: 24px;
  box-shadow: 0 1px 6px 0 rgba(50,69,99,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #BC8429;
  color: #24314A;
  transform: translateY(-2px) scale(1.03);
}

/* === Mobile Navigation === */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 110;
  margin-left: 8px;
  padding: 8px 12px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: linear-gradient(120deg, #324563 80%, #e5e0da 100%);
  box-shadow: 0 10px 48px 0 rgba(36,49,74, 0.22);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.83,.01,.3,.99);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  margin: 24px 28px 0 0;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10000;
}
.mobile-menu-close:hover {
  color: #BC8429;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 36px 36px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 12px;
  width: 100%;
  transition: background 0.22s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BC8429;
  color: #24314A;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === Hero Section === */
.hero {
  margin-top: 0;
  padding: 0 0 64px 0;
  background: linear-gradient(120deg, #E5E0DA 35%, #fff 100%);
  border-bottom: 1px solid #eee;
}
.hero .container {
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero h1 {
  color: #24314A;
  font-size: 2.75rem;
}
.hero p {
  max-width: 560px;
  color: #324563;
  font-size: 1.18rem;
}

/* === Features & Grids === */
.features {
  background: none;
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.feature-grid, .services .service-list, .category-grid, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-card, .service-card, .category-card, .step-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 16px 0 rgba(36,49,74,0.07);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.21s, background 0.2s;
  position: relative;
  gap: 15px;
}

.feature-card:hover, .service-card:hover, .category-card:hover, .step-card:hover {
  box-shadow: 0 10px 32px 0 rgba(50,69,99, 0.12);
  background: #faf8f6;
  transform: translateY(-4px) scale(1.025);
}
.feature-card img, .service-card img, .category-card img, .step-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-card h3, .service-card h3, .category-card h3, .step-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #24314A;
}
.feature-card p, .service-card p, .category-card p, .step-card p {
  font-size: 1rem;
  color: #324563;
}

/* === Cards & Lists === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(36,49,74,0.07);
  padding: 24px 24px;
  position: relative;
}

.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 (Unmistakable & Accessible) */
.testimonials {
  background: none;
  margin-bottom: 60px;
  padding: 24px 0 40px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(36,49,74, 0.11);
  border-radius: 18px;
  padding: 28px 32px 22px 32px;
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.testimonial-card p {
  color: #24314A;
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.testimonial-card .testimonial-meta, .testimonial-card span {
  color: #324563;
  font-size: 0.98rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card span:last-child {
  color: #BC8429;
  font-style: normal;
  font-size: 1.14rem;
  margin-left: 8px;
}

/* Strong contrast for testimonials/reviews */
.testimonial-card, .testimonial-snippet .testimonial-card {
  background: #fff;
  color: #24314A;
}

/* FAQ section */
.faq {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #f5f6fb;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(36,49,74, 0.15);
  padding: 18px 20px 14px 20px;
}
.faq-list strong {
  color: #24314A;
}
.contact-prompt {
  color: #324563;
  font-size: 1.02rem;
  margin-top: 14px;
}

/**** LEGAL SECTIONS ****/
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(50,69,99,0.08);
  margin: 32px 0 32px 0;
  padding: 48px 32px;
}
.legal ul {
  margin-bottom: 18px;
}

/* === Step/Benefit List Styles === */
.benefit-list ul, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
  list-style-type: disc;
  padding-left: 1.5em;
}
.benefit-list li {
  color: #24314A;
  background: #e5e0da;
  border-radius: 12px;
  padding: 8px 14px 8px 14px;
  margin-bottom: 0;
  font-size: 1rem;
}

/* === CTA Section === */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg,#bc8429 0%,#e5e0da 100%);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 2px 14px 0 rgba(188,132,41, 0.10);
}
.cta h2 {
  color: #24314A;
  margin-bottom: 12px;
}
.cta p {
  color: #324563;
}

/* === Footer === */
footer {
  background: #24314A;
  color: #e5e0da;
  padding: 0;
  box-shadow: 0 -1px 16px 0 rgba(36,49,74, 0.09);
}
footer .container {
  padding-top: 36px;
  padding-bottom: 36px;
}
.footer-columns {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 26px;
}
.footer-columns > div {
  min-width: 180px;
  flex: 1 1 200px;
}
.footer-columns nav a {
  color: #e5e0da;
  font-size: 1rem;
  margin-bottom: 3px;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.footer-columns nav a:hover, .footer-columns nav a:focus {
  color: #BC8429;
  text-decoration: underline;
}
.footer-columns img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-bottom {
  padding-top: 8px;
  border-top: 1px solid #3e4a64;
  text-align: center;
  color: #e5e0da;
}

/* === Contact & Form Styles === */
.contact {
  margin-bottom: 60px;
  padding: 40px 0;
}
.contact .content-wrapper {
  gap: 18px;
}
.hours {
  margin-bottom: 10px;
}
.map-placeholder {
  background: #f7f9fa;
  border: 1px dashed #bc8429;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 8px;
  color: #324563;
}

/* === Spacing & Card Alignment as per patterns === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**** Thank You Section ****/
.thank-you {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(36,49,74, 0.08);
  margin: 60px auto;
  padding: 62px 22px 55px 22px;
  text-align: center;
}
.thank-you h1 {
  color: #BC8429;
  margin-bottom: 18px;
}
.thank-you .cta-primary {
  margin-top: 25px;
}

/**** Utility Classes ****/
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/**** Responsive Design ****/
@media (max-width: 1024px) {
  .footer-columns {
    gap: 24px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
  .feature-grid, .category-grid, .service-list, .step-list {
    flex-direction: column;
    gap: 20px;
  }
  .section, .cta, .legal {
    padding: 30px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .feature-grid, .card-container, .category-grid, .service-list, .step-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .features, .section, .cta, .legal {
    padding: 26px 5px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .feature-card, .category-card, .service-card, .step-card, .testimonial-card {
    padding: 18px 10px;
  }
  .features, .section, .cta, .legal, .thank-you {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
  html {
    font-size: 15px;
  }
}

/* === Cookie Consent Banner & Modal === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #e5e0da 70%, #bc8429 100%);
  color: #24314A;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 -2px 40px 0 rgba(50,69,99,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  z-index: 99999;
  animation: cookiefadein 0.65s cubic-bezier(.07,.54,.63,1.04);
}
@keyframes cookiefadein {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 0.98rem;
  color: #24314A;
}
.cookie-banner .btn {
  margin-left: 10px;
  margin-right: 4px;
  background: #324563;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.16s;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: #bc8429;
  color: #24314A;
  transform: translateY(-2px) scale(1.02);
}
.cookie-banner .btn.secondary {
  background: #fff;
  color: #324563;
  border: 1px solid #bc8429;
  margin-right: 0;
}
.cookie-banner .btn.secondary:hover {
  background: #e5e0da;
  color: #bc8429;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 10px 18px 10px;
  }
  .cookie-banner .btn {
    width: 100%;
    margin: 4px 0 0 0;
    padding: 9px 0;
  }
}

/* Cookie Modal Overlay & Content */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36, 49, 74, 0.54);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(50,69,99,0.21);
  padding: 40px 36px 24px 36px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookiemodalfadein 0.35s;
}
@keyframes cookiemodalfadein {
  0% { transform: scale(0.98) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #24314A;
  font-size: 1.25rem;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #24314A;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #bc8429;
  border-radius: 6px;
}
.cookie-modal .modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .btn {
  background: #324563;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, transform 0.12s;
}
.cookie-modal .btn:hover {
  background: #bc8429;
  color: #24314A;
  transform: scale(1.04);
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #bc8429;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #24314A;
}
@media (max-width: 430px) {
  .cookie-modal {
    min-width: unset;
    padding: 18px 8px;
  }
}

/**** Buttons & Form Elements ****/
button, input[type='button'], input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
}
input[type="text"], input[type="email"], input[type="password"] {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1px solid #bc8429;
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 1rem;
  margin-top: 6px;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.17s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
  border-color: #324563;
  box-shadow: 0 3px 18px 0 rgba(36,49,74, 0.04);
}
input[disabled] {
  background: #edeae5;
  color: #888;
}

/**** Accent and Brand Utilities ****/
.bg-primary {background: #324563; color: #fff;}
.bg-secondary {background: #E5E0DA; color: #324563;}
.bg-accent {background: #BC8429; color: #24314A;}
.text-primary {color: #24314A !important;}
.text-secondary {color: #324563 !important;}
.text-accent {color: #BC8429 !important;}

/**** Hide default outline except for tab focus ****/
:focus {
  outline: none;
  box-shadow: 0 0 0 2px #bc8429;
}

/**** Subtle fade-in for all sections ****/
section, .section {
  opacity: 0;
  animation: fadeInSection 0.6s cubic-bezier(.44,.13,.5,1.21) 0.16s forwards;
}
@keyframes fadeInSection {
  0% { opacity: 0; transform: translateY(24px);}
  100% { opacity: 1; transform: none;}
}

/**** Custom Scrollbar for Modern Look ****/
::-webkit-scrollbar {
  width: 8px;
  background: #e5e0da;
}
::-webkit-scrollbar-thumb {
  background: #bc8429;
  border-radius: 4px;
}

/*** Disable Grid, Columns, Absolute for Content Cards (as required, to enforce constraint) ***/
/* No display: grid, grid-*, column-count, column-width, column-gap, columns, break-inside for cards/lists */
