/* ----- 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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
footer p {color: white;}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #f8f7f3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #684D34;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B4955A;
  outline: none;
}
ul, ol {
  margin-left: 1.7em;
}
ul li, ol li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: 600;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
:focus {
  outline: 2px solid #B4955A;
  outline-offset: 1px;
}

/* ---- LUXURY PREMIUM COLORS ---- */
:root {
  --color-primary: #26533C;
  --color-secondary: #F3E9D1;
  --color-accent: #684D34;
  --color-white: #fff;
  --color-black: #161616;
  --color-gold: #B4955A;
  --color-gold-dark: #8D6748;
  --color-light: #f8f7f3;
  --color-border: #eae1cc;
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.12;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}
.section h1, .section h2, .section h3 {
  margin-top: 0;
}
p, li {
  font-size: 1rem;
  color: #2e2e2e;
}
.subtitle {
  font-size: 1.14rem;
  margin-bottom: 24px;
  color: #5e5a56;
}

/* ---- GENERAL LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(38, 83, 60, 0.07);
}
main > section {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

/* ---- HEADER ---- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(38, 83, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 51;
}
header > a {
  display: flex;
  align-items: center;
  height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.main-nav a:hover {
  color: var(--color-gold);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 32px;
  border: 2px solid var(--color-gold);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 30px;
  box-shadow: 0 2px 12px rgba(180, 149, 90, 0.10);
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 4px 22px rgba(180, 149, 90, 0.16);
}
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 22px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-gold);
  color: var(--color-white);
}
@media (max-width: 1060px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header {
    padding: 0 12px;
  }
  .main-nav {
    gap: 7px;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 10px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header {
    height: 56px;
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
    padding: 8px 15px;
    font-size: 1rem;
  }
}

/* ---- MOBILE BURGER MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-white);
  box-shadow: 0 0 80px rgba(38, 83, 60, 0.13);
  z-index: 110;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 10px 0;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(180, 149, 90, 0.07);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 32px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--color-primary);
  padding: 12px 2px 8px 0;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  transition: color 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold-dark);
  background: var(--color-secondary);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(117deg, #fff 0%, #f6eed6 65%);
  border-bottom: 2px solid var(--color-gold);
  padding: 60px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 10px 0;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
}

/* ---- FLEX LAYOUTS & CARDS ---- */
.card-container, .card-grid, .content-grid, .feature-grid, .team-grid, .testimonial-slider, .testimonial-grid, .service-highlights, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-card, .team-bio, .testimonial-card, .course-item {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(38,83,60,0.06);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  min-width: 224px;
}
.card {
  border: 1px solid var(--color-border);
}
.card:hover,
.team-bio:hover,
.course-item:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(180,149,90,0.10);
  border-color: var(--color-gold);
  transition: box-shadow 0.32s, border 0.22s;
}
.service-highlights > div,
.feature-grid > li,
.team-grid > .team-bio,
.course-list > .course-item {
  flex: 1 1 288px;
  min-width: 230px;
  max-width: 340px;
}
/* Testimonials */
.testimonial-slider, .testimonial-grid {
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-secondary);
  color: #2e2e2e;
  border: 1px solid var(--color-border);
  padding: 24px 24px 24px 32px;
  min-width: 235px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px rgba(180, 149, 90, 0.12);
  position: relative;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card .stars {
  color: var(--color-gold);
  font-size: 1.45rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.more-stories {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 2px dashed var(--color-gold);
}
.more-stories h2 {
  font-size: 1.24rem;
  color: var(--color-primary);
}
.statistics {
  margin: 26px 0 18px 0;
  color: #595549;
  font-weight: 500;
} 
.star-ratings {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  color: var(--color-gold);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ----- Team Section ----- */
.team-grid {
  gap: 24px;
  justify-content: space-between;
}
.team-bio {
  align-items: flex-start;
  background: var(--color-secondary);
  color: #2e2e2e;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 2px 14px rgba(38,83,60,0.06);
}
.team-bio img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
  margin-bottom: 10px;
}

/* ----- Features/Bullets/Steps ----- */
.feature-grid, .feature-bullets, .mini-faq-list, .faq-list, .terms-of-use {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.feature-grid {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
}
.feature-grid li {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-secondary);
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 16px;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
}
.feature-bullets li:before {
  content: "\2022 ";
  color: var(--color-gold);
  font-weight: bold;
  display: inline-block;
  width: 1.3em;
  margin-left: -1.3em;
}
.step-by-step {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.step-by-step li {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 16px 12px 16px;
  box-shadow: 0 2px 10px rgba(38,83,60,0.04);
}
.step-by-step img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
}

/* ----- CTA Banner ----- */
.cta-banner {
  background: linear-gradient(90deg, #f3e9d1 56%, #faefcf 100%);
  border-left: 5px solid var(--color-gold);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(180,149,90,0.13);
  padding: 26px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  min-height: 70px;
}
.cta-banner p {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.18rem;
}
.cta-banner .cta-btn {
  margin: 0;
  min-width: 160px;
}
@media (max-width: 700px) {
  .cta-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
    text-align: left;
  }
}

/* ----- Contact Section ----- */
.contact-details,
.map-location {
  margin: 16px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li, .map-location p {
  font-size: 1rem;
  color: #2e2e2e;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

/* --- Confirmation Message (Thank You) --- */
.confirmation-message {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 10px 0;
}

/* ----- Footer ----- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  width: 100%;
  padding-top: 24px;
  padding-bottom: 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 12px 32px;
  border-bottom: 1px solid #41786948;
  gap: 24px;
}
.footer-top img {
  width: 58px;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 32px 8px 32px;
  flex-wrap: wrap;
  border-top: 1px solid #41786932;
  font-size: 0.95rem;
  gap: 18px;
}
.contact-info {
  color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-info a {
  color: var(--color-gold);
  transition: text-decoration 0.2s;
}
.contact-info a:hover {
  text-decoration: underline;
  color: var(--color-white);
}
.contact-info img {
  width: 14px;
  margin: 0 2px -3px 2px;
}
.copyright {
  color: #f8e9bd;
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ---- FAQ/Terms SECTION ---- */
.faq-list, .terms-of-use {
  gap: 22px;
  margin-bottom: 22px;
}
.faq-list li, .terms-of-use li, .mini-faq-list li {
  background: var(--color-secondary);
  border-left: 4px solid var(--color-gold);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(38,83,60,0.04);
  margin-bottom: 4px;
}
.contact-suggestion {
  margin-top: 20px;
  font-size: 1.07rem;
  background: #f6eed6;
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}
.contact-suggestion a {
  font-weight: 500;
}

/* --- Responsive Layouts --- */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid, .service-highlights, .team-grid, .testimonial-slider, .content-grid, .course-list {
    gap: 14px;
  }
  .footer-top, .footer-bottom {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 26px 5px;
    margin-bottom: 30px;
  }
  .feature-grid, .step-by-step, .service-highlights, .team-grid, .testimonial-slider, .testimonial-grid, .course-list {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-card, .team-bio, .testimonial-card, .course-item {
    min-width: 160px;
    max-width: 100%;
    padding: 16px 11px;
  }
}

/* --- Utility Classes / Animations --- */
.shadow-lg {
  box-shadow: 0 8px 40px rgba(38,83,60,0.13) !important;
}
.gold-text {
  color: var(--color-gold) !important;
}
.rounded {
  border-radius: 24px !important;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---- Cookie Consent Banner & Modal ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 20px rgba(180, 149, 90, 0.14);
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 32px;
  font-size: 1rem;
  animation: fadeIn 0.7s;
}
.cookie-banner p {
  color: var(--color-primary);
  max-width: 580px;
  margin-right: 12px;
}
.cookie-btn {
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 10px rgba(180,149,90,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-btn.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-gold);
  color: var(--color-white);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 8px;
    font-size: 0.98rem;
  }
}

/* ---- Cookie Settings Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(22, 22, 22, 0.42);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal {
  max-width: 420px;
  width: 98vw;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(38,83,60,0.22);
  padding: 34px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.36s;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 26px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eae1cc;
  border-radius: 26px;
  transition: background .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-gold);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(38,83,60,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-cat-label {
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 15px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border: none;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}

/* ------- Misc Layouts ------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure minimum spacing between cards/sections */
.card, .feature-card, .team-bio, .testimonial-card, .course-item, .section, .content-wrapper {
  margin-bottom: 20px;
}

/* ---- Remove double margins last child ---- */
.card-container > *:last-child, .feature-grid > *:last-child, .service-highlights > *:last-child, .testimonial-slider > *:last-child, .testimonial-grid > *:last-child, .section:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ---- Scrollbar Styling ---- */
html {
  scrollbar-color: var(--color-gold) var(--color-secondary);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  height: 12px;
  width: 10px;
  background: var(--color-secondary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ---- End: Luxury Premium, Flexbox-Only CSS ---- */
