body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
  }
  
  .logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
  }
  
  h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  p {
    color: #666;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #1ebe5c;
    transform: scale(1.05);
  }
  