body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }

    .container {
      background-color: rgba(240, 240, 240, 0.9);
      padding: 40px 25px;
      border-radius: 25px;
      text-align: center;
      max-width: 800px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      margin: 20px;
    }

    h1 {
      font-size: 2.5rem;
      margin: 0 0 20px 0;
    }

    .highlight {
      color: #0073ff;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      background-color: #0073ff;
      color: white;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      margin: 20px 0;
      transition: all 0.3s ease;
      transform: translateY(0);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn:hover {
      background-color: #005ed6;
      transform: translateY(-4px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }

    .btn span {
      margin-right: 8px;
    }

    p, ul {
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
      text-align: left;
      margin: 10px 0;
      padding: 0 10px;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    ul li {
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 1.5rem;
      margin-top: 20px;
      margin-bottom: 10px;
      text-align: center;
    }

    footer {
      margin-top: 20px;
      font-size: 0.9rem;
      color: #666;
    }

    @media screen and (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.3rem;
      }
    }