    * {
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.8;
      background-color: #f9fafb;
      margin: 0;
      padding: 0;
      color: #1f2937;
    }
     .redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

    .container {
      max-width: 800px;
      margin: 60px auto;
      background: #ffffff;
      padding: 40px 30px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }
    h1, h2 {
      color: #111827;
      margin-bottom: 0.75em;
    }
    h1 {
      font-size: 2rem;
      text-align: center;
      font-weight: 700;
    }
    h2 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 2em;
    }
    p, li {
      font-size: 1rem;
      margin-bottom: 1em;
    }
    ul {
      padding-left: 1.2em;
      margin-bottom: 1em;
    }
    li {
      margin-bottom: 0.75em;
    }
    hr {
      border: none;
      border-top: 1px solid #e5e7eb;
      margin: 40px 0;
    }

    @media (max-width: 600px) {
      .container {
        margin: 20px 16px;
        padding: 24px 20px;
      }
      h1 {
        font-size: 1.5rem;
      }
      h2 {
        font-size: 1.1rem;
      }
      p, li {
        font-size: 0.95rem;
      }
    }