   body {
      background: linear-gradient(135deg, #f9a826, #ff6f61);
      color: #fff;
      text-align: center;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      padding: 2rem;
    }
    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.25rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    .cta-btn {
      background-color: #fff;
      color: #000;
      padding: 1rem 2rem;
      font-size: 1.25rem;
      border-radius: 2rem;
      text-decoration: none;
      transition: background 0.3s;
    }
    .cta-btn:hover {
      background-color: #ffd166;
    }
    .social-share {
      margin-top: 2rem;
    }
    .social-share a {
      color: #fff;
      font-size: 1.5rem;
      margin: 0 0.5rem;
      transition: color 0.3s ease;
      text-decoration: none;
    }
    .social-share a:hover {
      color: #000;
    }