* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #FF8A00, #FF4E00);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
  }
  
  .navbar .brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .navbar .nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }
  
  .navbar .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  
  .product-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
  }
  
  .product-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
  }
  .product-text {
    max-width: 600px;
  }

.product-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  transform: rotate(-75deg);
  transform-origin: center center;
}
  
  .product-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
  }
  .buy-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #FF4E00;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
  }
  
  .buy-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  
  .features-section {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    color: #fff;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  
  .footer {
    width: 100%;
    margin-top: 6rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
  }
  
  
  @media (max-width: 768px) {
    .navbar-container {
      padding: 0 1rem;
    }
  
    .product-title {
      font-size: 2.5rem;
      padding: 0 1rem;
    }
  
    .product-description {
      font-size: 1.1rem;
      padding: 0 1rem;
    }
  
    .navbar .nav-links {
      gap: 1rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }