/* Custom styles beyond Tailwind utilities */
:root{
  --primary: #1a365d;
  --gold: #d69e2e;
  --accent: #319795;
}

body{font-family:Inter,arial,sans-serif}

/* Underline accent for section headings */
.section-underline{display:inline-block;position:relative}
.section-underline:after{content:"";height:4px;width:48px;background:var(--gold);position:absolute;left:0;bottom:-8px;border-radius:2px}

/* Smooth transitions for buttons */
.btn-transition{transition:transform .15s ease,background-color .15s ease}

/* Slight shadow for header when scrolled */
header.scrolled{box-shadow:0 6px 20px rgba(10,10,10,0.08)}

/* FAQ transitions */
.faq-answer{transition:max-height .25s ease;padding:0 1rem}
