/* -------------------- 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,input,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { 
  line-height: 1.6;
  background: #F3F8FA; /* brand accent */
  color: #182634;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }
input,textarea,select,button { font-family: inherit; }

/* -------------------- LUXURY PREMIUM THEME COLORS --------------------- */
:root {
  --lux-primary: #12344B;
  --lux-secondary: #35B9CE;
  --lux-accent: #F3F8FA;
  --lux-gold: #D4AF37;
  --lux-gold-light: #fff8e1;
  --lux-text: #182634;
  --lux-heading: #222c3a;
  --lux-neutral: #fff;
  --lux-border: #e7e8ea;
  --lux-shadow: rgba(18,52,75,0.06);
  --lux-shadow-strong: rgba(18,52,75,0.13);
}

/* -------------------- TYPOGRAPHY --------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--lux-text);
  background: var(--lux-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-heading);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.16;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.125rem; }

p, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
strong { font-weight: 600; }

/* -------------------- CONTAINER & LAYOUT --------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-neutral);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--lux-shadow);
}
@media (max-width: 768px) {
  .section { padding: 24px 8px; margin-bottom: 36px; }
  .container { width: 98%; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}
/* For feature/service/testimonial sections where needed, override as flex-row for lg screens */
@media (min-width: 992px) {
  .feature-grid, .service-list, .service-highlights, .resources-list, .case-study-list, .contact-details, .content-grid, .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
  }
}
.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; }
  .feature-grid, .service-list, .service-highlights, .resources-list, .case-study-list, .contact-details, .content-grid { flex-direction: column !important; gap: 20px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--lux-neutral);
  border-radius: 16px;
  box-shadow: 0 4px 18px var(--lux-shadow);
  margin-bottom: 20px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .25s, transform .22s;
}
.card:hover {
  box-shadow: 0 8px 30px var(--lux-shadow-strong);
  transform: translateY(-4px) scale(1.015);
}

/***** CRITICAL SPACING *****/
.card, .feature-item, .testimonial-card, .resources-list > div, .faq-list > details, .case-study-list > div, .service-list > div, .service-highlights > div, .contact-details > div, .info-section > p, .legal-section > *, .cta-banner, .cta-row {
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}

/***** TESTIMONIAL CARDS *****/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  background: var(--lux-gold-light);
  border: 1px solid var(--lux-gold);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--lux-shadow);
  transition: box-shadow .22s;
  min-width: 230px;
  max-width: 380px;
  color: #222c3a;
}
.testimonial-card p {
  color: #222c3a;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--lux-primary);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px var(--lux-gold);
}

/***** CTA BANNER *****/
.cta-banner {
  background: linear-gradient(92deg, var(--lux-accent) 60%, #f9edc2 100%);
  border: 1.5px solid var(--lux-gold);
  border-radius: 16px;
  box-shadow: 0 2px 18px var(--lux-shadow);
  padding: 32px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cta-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

/***** BUTTONS & LINKS *****/
.cta-btn, .cta-btn:visited {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  padding: 13px 34px;
  background: var(--lux-primary);
  color: var(--lux-gold);
  border-radius: 50px;
  border: 2px solid var(--lux-gold);
  box-shadow: 0 2px 10px var(--lux-shadow);
  cursor: pointer;
  transition: background .19s, color .19s, border-color .22s, transform .14s, box-shadow .2s;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--lux-gold);
  color: var(--lux-primary);
  border-color: var(--lux-primary);
  outline: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 18px var(--lux-gold);
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 14px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  color: var(--lux-primary);
  transition: color .18s, border-color .22s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--lux-gold);
  border-color: var(--lux-gold);
}
/* Footer nav links */
.footer-nav a {
  color: var(--lux-primary);
  font-size: 0.97rem;
  margin: 0 10px 0 0;
  opacity: 0.8;
  transition: color .15s;
}
.footer-nav a:hover {
  color: var(--lux-gold);
  opacity: 1;
}

/* Text links (inline) */
a, a:visited { color: var(--lux-secondary); }
a:hover { color: var(--lux-gold); }

/***** HEADER & NAVIGATION *****/
header {
  width: 100%;
  padding: 18px 0;
  background: var(--lux-neutral);
  box-shadow: 0 2px 14px var(--lux-shadow-strong);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1280;
}
header .container, header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 44px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 1024px) {
  .main-nav a {
    margin: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 0; }
  .main-nav a { margin: 0 3px; font-size: 0.97rem; }
}
@media (max-width: 768px) {
  header .main-nav, header .cta-btn { display: none; }
}

/***** MOBILE BURGER MENU ***** */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--lux-primary);
  background: var(--lux-accent);
  border-radius: 40px;
  padding: 8px 14px;
  border: 1.2px solid var(--lux-border);
  margin-left: 8px;
  transition: box-shadow 0.18s;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    z-index: 3002;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 90vw;
  max-width: 320px;
  background: var(--lux-neutral);
  box-shadow: -2px 0 18px var(--lux-shadow-strong);
  z-index: 3010;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--lux-primary);
  align-self: flex-end;
  padding: 14px 16px 6px 6px;
  background: transparent;
  border: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px 22px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--lux-primary);
  padding: 10px 0;
  border-bottom: 1.2px solid var(--lux-border);
  border-radius: 0;
  transition: color .19s;
}
.mobile-nav a:hover {
  color: var(--lux-gold);
}
@media (max-width: 500px){
  .mobile-menu { max-width: 100vw; width: 100vw; }
  .mobile-nav { padding-right: 4vw; padding-left: 4vw; }
}

/* Mobile menu overlay click-catcher (if needed) */
.mobile-menu-overlay {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  background: rgba(18,52,75,0.33);
  z-index: 3008;
  display: none;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
}

/***** HERO SECTIONS *****/
main section:first-child, .hero {
  background: linear-gradient(96deg, var(--lux-accent) 55%, #ffeeb9 100%);
  border-radius: 24px;
  box-shadow: 0 3px 22px var(--lux-shadow-strong);
  margin-bottom: 60px;
  padding: 44px 20px 32px 20px;
}
main section:first-child h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-primary);
  font-size: 2.48rem;
  font-weight: 800;
}
main section:first-child .cta-btn, .hero .cta-btn { margin-top: 18px; }
@media (max-width: 768px) {
  main section:first-child, .hero { padding: 16px 6px 20px 6px; }
  main section:first-child h1, .hero h1 { font-size: 1.48rem; margin-bottom: 10px; }
}

/***** FEATURE HIGHLIGHTS *****/
.feature-grid, .service-highlights, .service-list, .resources-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div, .service-highlights > div, .service-list > div, .resources-list > div, .case-study-list > div {
  background: var(--lux-neutral);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--lux-shadow);
  padding: 26px 19px 18px 19px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  border: 1.2px solid var(--lux-gold-light);
  transition: box-shadow .24s, border-color .19s, transform .16s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > div:hover, .service-highlights > div:hover, .service-list > div:hover, .resources-list > div:hover, .case-study-list > div:hover {
  box-shadow: 0 6px 18px var(--lux-gold);
  border-color: var(--lux-gold);
  transform: translateY(-3px) scale(1.023);
}
.feature-grid img, .service-highlights img, .resources-list img, .case-study-list img {
  height: 48px; width: 48px; margin-bottom: 8px;
}
.feature-grid h3, .service-highlights h3, .service-list h3, .resources-list h3, .case-study-list h3 {
  color: var(--lux-primary);
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .feature-grid, .service-highlights, .service-list, .resources-list, .case-study-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-highlights > div, .service-list > div, .resources-list > div, .case-study-list > div {
    max-width: 100%;
    min-width: unset;
    align-items: flex-start;
  }
}

/***** FAQ LIST *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list details {
  background: var(--lux-accent);
  border-radius: 8px;
  padding: 20px 16px;
  border: 1.2px solid var(--lux-border);
  box-shadow: 0 2px 10px var(--lux-shadow);
  margin-bottom: 20px;
  transition: border-color .18s;
}
.faq-list details[open] {
  border-color: var(--lux-gold);
}
.faq-list details summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--lux-primary);
  cursor: pointer;
  font-size: 1.07rem;
  margin-bottom: 9px;
}

/***** CARD/INFO/LEGAL SECTIONS *****/
.info-section, .legal-section, .text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.legal-section ul {
  margin-left: 20px;
  list-style-type: disc;
}
.legal-section li { margin-bottom: 10px; }

/***** CONTACT DETAILS (CONTATTI) *****/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-details > div {
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  background: var(--lux-neutral);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--lux-shadow);
  padding: 22px 18px;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details .map-location img {
  width: 40px; height: 40px; margin-bottom: 4px;
}

/***** FOOTER *****/
footer {
  background: var(--lux-primary);
  padding: 36px 0 18px 0;
  color: var(--lux-neutral);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-size: 0.97rem;
  color: var(--lux-neutral);
}
.footer-info img { height: 33px; }
@media (max-width: 768px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-nav { gap: 14px 8px; }
  .footer-info { gap: 12px; }
}

/***** CLIENT LOGOS *****/
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 32px 0 12px 0;
}
.client-logos img {
  height: 54px;
  width: auto;
  filter: grayscale(0.2) brightness(1.1);
}

/***** IMPACT METRICS (CASE-STUDY) *****/
.impact-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.impact-metrics li {
  background: var(--lux-gold-light);
  color: var(--lux-primary);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
}

/***** LISTS IN RESOURCES & OTHERS *****/
.resources-list ul, .text-section ul {
  margin-top: 10px;
  margin-left: 18px;
  list-style-type: disc;
}
.resources-list li, .text-section li { margin-bottom: 7px; }

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3400;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--lux-neutral);
  border-top: 2.5px solid var(--lux-gold);
  box-shadow: 0 -2px 18px var(--lux-shadow);
  padding: 28px 10vw 24px 10vw;
  gap: 26px;
  animation: cookieFadeIn .4s ease;
}
@keyframes cookieFadeIn { 0%{ opacity:.2; transform:translateY(50px);} 100%{ opacity:1; transform:none;} }
.cookie-banner p {
  font-size: 1rem;
  color: var(--lux-text);
  margin-bottom: 0;
  max-width: 440px;
}
.cookie-banner .cookie-btn {
  min-width: 130px;
  margin-left: 9px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--lux-gold);
  background: var(--lux-primary);
  color: var(--lux-gold);
  transition: background .16s, color .17s, border-color .17s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--lux-gold);
  color: var(--lux-primary);
  border-color: var(--lux-primary);
}
.cookie-banner .cookie-settings-btn {
  color: var(--lux-primary);
  background: var(--lux-gold-light);
  border: 2px solid var(--lux-gold);
  margin-left: 6px;
}
@media (max-width: 700px) {
  .cookie-banner {
    padding: 18px 4vw 18px 4vw;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btn { margin-left: 0; margin-top: 7px; }
}

.cookie-modal-overlay {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  background: rgba(18,52,75,0.63);
  z-index: 3800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--lux-neutral);
  border: 2px solid var(--lux-gold);
  border-radius: 16px;
  box-shadow: 0 6px 28px var(--lux-shadow-strong);
  max-width: 97vw;
  min-width: 290px;
  width: 410px;
  padding: 34px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn .33s cubic-bezier(.86,0,.07,1);
}
@keyframes cookieModalIn { from { opacity: 0; transform: scale(0.93); } to { opacity:1; transform: scale(1); } }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--lux-primary);
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--lux-border);
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .cookie-switch {
  width: 42px; height: 24px;
  border-radius: 15px;
  background: var(--lux-accent);
  border: 2px solid var(--lux-gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.cookie-modal .cookie-switch input {
  appearance: none;
  width: 100%; height: 100%;
  background: none;
  outline: none;
  position: absolute;
  left:0; top:0;
  margin:0;
  cursor: pointer;
}
.cookie-modal .cookie-switch::before {
  content: '';
  display: block;
  height: 18px; width: 18px;
  background: var(--lux-gold);
  border-radius: 50%;
  position: absolute;
  left: 3px; top: 2px;
  transition: left .18s cubic-bezier(.86,0,.07,1), background .17s;
}
.cookie-modal .cookie-switch input:checked + .cookie-switch::before,
.cookie-modal .cookie-switch input:checked ~ .cookie-switch::before {
  left: 21px;
  background: var(--lux-primary);
}
.cookie-modal .cookie-switch[aria-checked="true"]::before {
  left: 21px;
  background: var(--lux-primary);
}
.cookie-modal .cookie-switch[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal button {
  margin-top: 18px;
  min-width: 130px;
  align-self: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 14px; right: 19px;
  background: transparent;
  border: none;
  color: var(--lux-primary);
  font-size: 1.6rem;
}

/***** MICRO-INTERACTIONS *****/
li, .feature-grid > div, .service-list > div, .testimonial-card, .cta-btn {
  transition: box-shadow .22s, transform .17s, background .16s, color .16s, border-color .18s;
}

/***** FORM STYLES (for any forms) *****/
input, textarea, select {
  font-size: 1.06rem;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.2px solid var(--lux-border);
  margin-bottom: 13px;
  background: var(--lux-accent);
  color: var(--lux-text);
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--lux-gold);
  background: #fffbe8;
}
label { font-weight: 500; color: var(--lux-primary); display: block; margin-bottom: 5px; }

/***** SCROLLBAR *******/
body {
  scrollbar-color: var(--lux-gold) var(--lux-accent);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 11px; background: var(--lux-accent); }
::-webkit-scrollbar-thumb { background: var(--lux-gold); border-radius: 10px; }

/* -------------------- RESPONSIVE MEDIA QUERIES --------------------- */
@media (max-width: 500px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.13rem; }
  .card, .cta-banner, .content-wrapper, .section, .feature-grid > div, .testimonial-card, .footer-info, .resources-list > div {
    padding-left: 9px; padding-right: 9px;
  }
  .main-nav, .footer-nav { gap: 5px; }
}

/* Hide scroll on modal open on body */
body.modal-open { overflow: hidden; }

/***** Z-INDEX CONTROLS FOR OVERLAYS *****/
.mobile-menu, .mobile-menu-overlay { z-index: 3010; }
.cookie-banner, .cookie-modal, .cookie-modal-overlay { z-index: 3400; }

/***** HIGH CONTRAST FOR ACCESSIBILITY IN TESTIMONIALS *****/
.testimonial-card {
  color: #222c3a;
  background: var(--lux-gold-light);
}
.testimonial-card p, .testimonial-card strong {
  color: #182634;
}

/***** MISC & REFINEMENTS *****/
hr {
  border: none;
  border-top: 1.5px solid var(--lux-gold-light);
  margin: 28px 0;
}

/* Prevent overlapping: enforce spacing between all sections */
section {
  margin-bottom: 60px;
  padding-top: 12px;
}
@media (max-width: 768px) {
  section { margin-bottom: 34px; }
}

/* Decorative gold bar under headings */
h2 {
  position: relative;
  padding-bottom: 8px;
}
h2::after {
  content: '';
  display: block;
  width: 38px; height: 3px;
  background: var(--lux-gold);
  border-radius: 4px;
  margin: 11px 0 0 0;
}

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