body {
    margin: 0;
  font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at bottom, #1a0d05, #000);
    color: #fff;
    text-align: center;
  }
  
  .hero {
    .hero {
        height: 100vh; /* Full screen height */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f0f0; /* Or any background color/image */
        text-align: center;
      }
      
  }
  
  .logo {
    max-width: 280px; /* Increased from 180px */
    width: 100%;
    height: auto;
  }
  
  
  .main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #ff4500;
    font-weight: 600;
  }
  
  .description {
    font-size: 18px;
    margin: 20px 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .buttons .btn {
    padding: 12px 28px;
    margin: 10px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn.primary {
    background-color: #ff4500;
    color: #fff;
    border: none;
  }
  
  .btn.secondary {
    border: 2px solid #ff4500;
    color: #ff4500;
    background: transparent;
  }
  
  .btn.primary:hover {
    background-color: #e03e00;
  }
  
  .btn.secondary:hover {
    background-color: #ff4500;
    color: #fff;
  }

  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .main-title {
      font-size: 2.2rem;
    }
  
    .subtitle {
      font-size: 1.2rem;
    }
  
    .buttons .btn {
      display: block;
      width: 100%;
      margin: 10px 0;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 20px;
      }
  }
  