/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
  }
  .container{
    padding: 1em 3em ;
  }
  /* Header styles */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .announcement-bar {
    background: #5b21b6;
    color: white;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .nav-link:hover {
    color: #6b21a8;
  }
  
  .nav-actions {
    display: flex;
    gap: 1rem;
  }
  
  /* Button styles */
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }
  
  .btn-primary {
    background: #f97316;
    color: white;
  }
  
  .btn-primary:hover {
    background: #ea580c;
  }
  
  .language-btn, .cart-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 9999px;
    cursor: pointer;
  }
  
  /* Hero section */
  .hero {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-content {
    max-width: 32rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
  }
  
  .hero p {
    color: #4b5563;
    margin-bottom: 1rem;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* Features section */
  .features {
    background: #000;
    color: white;
    padding: 4rem 2rem;
  }
  
  .features-content {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-item p {
    color: #9ca3af;
    margin-bottom: 1rem;
  }
  
  /* Newsletter section */
  .newsletter {
    background: #f3e8ff;
    padding: 4rem 2rem;
  }
  
  .newsletter-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
  }
  
  .newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 32rem;
    margin: 2rem auto 0;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    outline: none;
  }
  
  .newsletter-form input:focus {
    border-color: #6b21a8;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
  }
  
  /* Footer styles */
  .footer {
    background: #000;
    color: white;
    padding: 4rem 2rem;
  }
  
  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .footer-logo {
    font-weight: bold;
    font-size: 1.5rem;
    border: 2px solid white;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
  }
  
  .footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
  }
  
  .footer-column a:hover {
    color: white;
  }
  
  /* Link styles */
  .link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
  }
  
  .link:hover {
    opacity: 0.8;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .hero-actions {
      justify-content: center;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
    }
  }