    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #f8f9fa;
      color: #333;
      text-align: center;
    }
    .header {
      margin: 40px 0 20px;
    }
    h1 {
      color: #d32f2f; /* RCCG red-ish tone */
      margin: 10px 0 5px;
      font-size: 2.2em;
    }
    .subtitle {
      margin: 0;
      color: #555;
      font-size: 1.1em;
    }
    .container {
      max-width: 600px;
      margin: 0 auto;
      padding: 30px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .store-buttons {
      margin: 30px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .store-btn {
      display: inline-block;
      text-decoration: none;
      transition: transform 0.15s;
    }
    .store-btn:hover {
      transform: translateY(-3px);
    }
    .store-btn img {
      height: 60px; /* Adjust as needed */
      width: auto;
    }
    .highlight {
      border: 2px solid #d32f2f;
      border-radius: 12px;
      padding: 12px;
      background-color: #ffebee;
      margin: 20px 0;
    }

    .legal-buttons {
      display: flex;
      justify-content: center;
      gap: 24px;               /* space between them */
      margin: 48px 0 32px;
      flex-wrap: wrap;         /* stack on very narrow screens */
    }
    
    .legal-btn {
      display: inline-flex;    /* better centering */
      align-items: center;
      justify-content: center;
      width: 240px;            /* fixed width – adjust if needed, e.g. 220px or 260px */
      height: 52px;            /* fixed height – good tap target */
      background-color: #000000; /* pure black */
      color: #ffffff;          /* white text */
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border-radius: 10px;     /* modern subtle round */
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* light depth */
      text-align: center;
    }
    
    .legal-btn:hover {
      background-color: #1a1a1a; /* slightly lighter black on hover */
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }
    
    .legal-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }
    
    /* Optional: if you prefer dark grey instead of pure black */
    .legal-btn.grey {
      background-color: #222222;
    }
    .legal-btn.grey:hover {
      background-color: #333333;
    }
    .note {
      font-size: 0.9em;
      color: #555;
      margin-top: 40px;
    }
