    /* Reset básico */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f9fafb;
      color: #222;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding: 40px 20px;
    }

    .container {
      max-width: 900px;
      background: #fff;
      padding: 40px 50px;
      border-radius: 12px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
      border: 1px solid #e2e8f0;
    }

    h1 {
      color: #1e293b;
      font-weight: 700;
      margin-bottom: 24px;
      font-size: 2.5rem;
      text-align: center;
      letter-spacing: 1px;
    }

    h2 {
      font-size: 1.5rem;
      margin: 32px 0 16px;
      color: #334155;
      border-bottom: 2px solid #3b82f6;
      padding-bottom: 6px;
    }

    p {
      margin-bottom: 16px;
      font-size: 1rem;
      color: #475569;
    }

    ul {
      list-style: disc inside;
      margin-bottom: 20px;
      color: #475569;
    }

    a {
      color: #3b82f6;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }
    a:hover {
      color: #2563eb;
      text-decoration: underline;
    }

    .btn-group {
      margin-top: 32px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    button {
      cursor: pointer;
      border-radius: 8px;
      border: none;
      padding: 14px 28px;
      font-weight: 600;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      user-select: none;
      box-shadow: 0 4px 8px rgba(59,130,246,0.3);
    }

    button.accept {
      background-color: #3b82f6;
      color: white;
    }
    button.accept:hover {
      background-color: #2563eb;
      box-shadow: 0 6px 12px rgba(37,99,235,0.4);
    }

    button.decline {
      background-color: #e11d48;
      color: white;
    }
    button.decline:hover {
      background-color: #b91c1c;
      box-shadow: 0 6px 12px rgba(185,28,28,0.4);
    }

    footer {
      margin-top: 40px;
      font-size: 0.875rem;
      color: #64748b;
      text-align: center;
    }

    @media (max-width: 600px) {
      .container {
        padding: 30px 20px;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      button {
        width: 100%;
        padding: 14px 0;
      }

      .btn-group {
        flex-direction: column;
        gap: 12px;
      }
    }
