/* roulang page: index */
:root {
      --primary: #0f172a;
      --accent: #ea580c;
      --accent-gold: #f59e0b;
      --turf-green: #047857;
      --bg-light: #f8fafc;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 18px;
    }
    html, body {
      margin: 0;
      padding: 0;
      color: var(--text-main);
      background-color: #ffffff;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    .custom-scrollbar::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
      background: #0f172a;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #334155;
      border-radius: 3px;
    }
    details summary::-webkit-details-marker {
      display: none;
    }
    details[open] summary .faq-chevron {
      transform: rotate(180deg);
    }
    .touch-target {
      min-height: 44px;
      min-width: 44px;
    }
