/* CSS RESET & BASE TYPOGRAPHY —––––––––––––––––––––––––––––––––––– */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* Remove list styles */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Set border-box by default */
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #1D2228;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1D2228;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #C6AA70;
}
strong { font-weight: 600; }

/* TYPOGRAPHY —––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1D2228;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; /*48px*/ }
  h2 { font-size: 2.25rem; /*36px*/ }
  h3 { font-size: 1.5rem; }
}
p, .text-section p, li, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #1D2228;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 24px;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* GENERAL SECTIONS, PADDING, SPACING —––––––––––––––––––––––––––––––––––– */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  section, .section {
    padding: 32px 0 32px 0;
    margin-bottom: 40px !important;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.hero {
  background: #F8F9FB;
  border-bottom: 1px solid #E3E6EB;
  padding: 60px 0 44px 0;
  margin-bottom: 44px;
  min-height: 220px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #1D2228;
}
.hero p {
  color: #3C4150;
  font-size: 1.125rem;
}

/* NAVBAR –––––––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E3E6EB;
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 20px 0 18px 0;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1D2228;
  padding: 6px 8px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
  font-weight: 500;
}
.main-nav a:focus,
.main-nav a:hover {
  background: #F2F2F2;
  color: #C6AA70;
}
.main-nav .cta-primary {
  background: #1D2228;
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  margin-left: 18px;
  box-shadow: 0 2px 12px 0 rgba(28,34,40,0.07), 0 1px 3px 0 rgba(30,30,30,0.04);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav .cta-primary:focus,
.main-nav .cta-primary:hover {
  background: #C6AA70;
  color: #1D2228;
  box-shadow: 0 6px 32px 0 rgba(198,170,112,0.15);
}

/* MOBILE MENU —–––––––––––––––––––––––––––––––––––––––––––––––– */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  border: none;
  background: none;
  color: #1D2228;
  cursor: pointer;
  margin-left: auto;
  margin-right: 10px;
  z-index: 102;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,34,40,0.96);
  box-shadow: 0 6px 64px 0 rgba(36,36,36,0.15);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.55,0,.1,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 221;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #C6AA70;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 14px 0;
  width: 100vw;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: 0;
  background: none;
  transition: background 0.2s, color 0.23s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C6AA70;
  background: rgba(198,170,112, 0.06);
}

/* Hide/show for navbar and mobile toggle —––––––––––––––––––– */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 16px;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle, .mobile-menu {display: none;}
}

/* FLEXBOX SPECIFIC LAYOUT CLASSES —––––––––––––––––––––––––– */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 12px 0 rgba(28,34,40,.07);
  padding: 30px 24px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(198,170,112,0.10);
  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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .card-container { flex-direction: column; gap: 16px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 12px 0 rgba(28,34,40,0.08);
  padding: 20px;
  color: #252728;
  margin-bottom: 24px;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px rgba(198,170,112,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28,34,40, 0.05);
  padding: 20px 16px;
  margin-bottom: 20px;
}

/* FEATURE GRID (ICON + TEXT FEATURES) —–––––––––––––––––––––––––– */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid > div {
  flex: 1 1 170px;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28,34,40, 0.05);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.18s, transform 0.11s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(198,170,112,0.10);
  transform: translateY(-2px) scale(1.013);
}
.feature-grid img {
  height: 40px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* FAQ ACCORDION —––––––––––––––––––––––––––––––––– */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28,34,40, 0.06);
  padding: 18px 22px;
  margin-bottom: 7px;
  transition: box-shadow 0.17s;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 24px rgba(198,170,112,0.09);
}
.faq-accordion h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1D2228;
  margin-bottom: 10px;
}
.faq-accordion .text-section p {
  margin-bottom: 0;
  color: #252728;
}

/* BUTTONS (PRIMARY, SECONDARY, COOKIE) —––––––––––––––––––––––– */
.cta-primary {
  display: inline-block;
  background: #1D2228;
  color: #fff;
  padding: 12px 30px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.09em;
  border: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(28,34,40,0.07);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.2s, box-shadow 0.22s, transform 0.13s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C6AA70;
  color: #1D2228;
  box-shadow: 0 6px 36px 0 rgba(198,170,112,0.13);
  transform: translateY(-2px) scale(1.01);
}
.cta-secondary, .cookie-settings-btn {
  background: transparent;
  color: #C6AA70;
  border: 1px solid #C6AA70;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.19s, border 0.18s;
}
.cta-secondary:hover,
.cta-secondary:focus,
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #C6AA70;
  color: #fff;
}

/* COOKIE CONSENT —––––––––––––––––––––––––––––––––– */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1D2228;
  color: #fff;
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  box-shadow: 0 -1px 18px 2px rgba(16,16,19,0.12);
  z-index: 3000;
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: transform 0.33s cubic-bezier(.55,0,.1,1), opacity 0.33s;
}
.cookie-consent-banner.hide {
  opacity: 0; visibility: hidden;
  transform: translateY(100%);
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px 16px 10px;
  }
}
.cookie-banner-text {
  font-size: 0.99rem;
  color: #fff;
  flex: 1 0 55vw;
  line-height: 1.55;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  padding: 10px 22px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
}
.cookie-accept-btn {
  background: #C6AA70;
  color: #1D2228;
}
.cookie-accept-btn:focus,
.cookie-accept-btn:hover {
  background: #fff;
  color: #1D2228;
  border: 1.4px solid #C6AA70;
}
.cookie-reject-btn {
  background: #fff;
  color: #1D2228;
  border: 1.4px solid #C6AA70;
}
.cookie-reject-btn:focus,
.cookie-reject-btn:hover {
  background: #C6AA70;
  color: #1D2228;
}
.cookie-settings-btn {
  background: transparent;
  color: #C6AA70;
  border: 1.4px solid #C6AA70;
}
.cookie-settings-btn:focus,
.cookie-settings-btn:hover {
  background: #C6AA70;
  color: #fff;
}

/* COOKIE MODAL —––––––––––––––––––––––––––––––– */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(29,34,40,0.55);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide { opacity: 0; visibility: hidden; }
.cookie-modal {
  background: #fff;
  color: #1D2228;
  border-radius: 14px;
  box-shadow: 0 21px 68px 0 rgba(30,34,36,0.11);
  padding: 34px 34px 28px 34px;
  min-width: 310px;
  max-width: 98vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 4010;
  animation: cookieModalAppear 0.35s cubic-bezier(.55,0,.1,1);
}
@keyframes cookieModalAppear {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-option label {
  cursor: pointer;
  font-weight: 500;
}
.cookie-switch {
  accent-color: #C6AA70;
}
.cookie-essential label, .cookie-essential input[type=checkbox] {
  opacity: 0.75;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* FOOTER —––––––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  border-top: 1px solid #E3E6EB;
  padding: 32px 0 18px 0;
  background: #fff;
  margin-top: 44px;
  color: #6B7079;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: 10px;
}
.footer-nav a {
  color: #6B7079;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  opacity: 0.96;
  transition: color 0.2s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #C6AA70;
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
  color: #6B7079;
  font-size: 0.98rem;
}
.footer-info img {
  height: 26px;
  width: auto;
  display: block;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .footer-nav { gap: 16px; font-size: 0.95rem; }
  .footer-info { gap: 8px; flex-direction: column; text-align: center; }
  .footer-info img { margin-right: 0; margin-bottom: 8px; }
  footer { padding: 26px 0 14px 0; }
}

/* TEXT SECTION, LISTING, ICONS —––––––––––––––––––––––––––––––– */
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  margin-bottom: 12px;
  margin-left: 0;
  padding-left: 0;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  color: #1D2228;
  font-size: 1rem;
}
.text-section ul li img {
  width: 20px;
  height: 20px;
}
.text-section p {
  color: #23241D;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
  color: #1D2228;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* Responsive helper for section layout spacing */
@media (max-width: 600px) {
  .content-wrapper, .feature-item, .card, .testimonial-card {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* SUBTLE SHADOWS & ELEVATION —––––––––––––––––––––––––– */
.card, .testimonial-card, .feature-item, .feature-grid > div, .faq-accordion > div {
  box-shadow: 0 2px 12px 0 rgba(28,34,40, 0.08);
}

/* SELECTION & FOCUS STATES —––––––––––––––––––––––––––– */
:focus {
  outline: 2px solid #C6AA70;
  outline-offset: 1.5px;
}

::selection {
  background: #C6AA70;
  color: #fff;
}

/* MINIMAL & CLEAN FORMS (if used) —––––––––––––––––––––––––– */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #E3E6EB;
  padding: 9px 14px;
  margin-bottom: 14px;
  transition: border 0.12s, box-shadow 0.12s;
  color: #1D2228;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C6AA70;
  box-shadow: 0 2px 5px 0 rgba(198,170,112,0.10);
}
button:active {
  transform: scale(0.98);
}

/* VISUAL HIERARCHY & WHITE SPACE —–––––––––––––––––––––––– */
section, .section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(80,80,95,0.03);
}

@media (max-width: 600px) {
  section, .section {border-radius: 0; box-shadow: none;}
}

/* UTILITY & HELPER CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.gap-24 { gap: 24px !important; }


/***** END OF CSS ****/
