header {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
    z-index: 1000;
  }
  
  .navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: #e63946;
    cursor: default;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #a6282a;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #e63946;
  }
  
  .nav-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #e63946, #a6282a);
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
  }
  
  .nav-btn:hover {
    background: #a6282a;
    transform: scale(1.05);
  }
  

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222222;
  }
  
  .container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
  }
  
  .hero {
    max-width: 600px;
    text-align: center;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
    background: #fff;
    animation: slideUp 1.2s ease forwards;
    border: 2px solid #e63946;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #a6282a;
    font-weight: 700;
  }
  
  p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555555;
    line-height: 1.5;
  }
  
  .btn {
    padding: 16px 50px;
    background: linear-gradient(90deg, #e63946, #a6282a);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #a6282a;
    box-shadow: 0 10px 30px rgba(166, 40, 42, 0.6);
    transform: scale(1.05);
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  