* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  
  header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 2em;
  }
  
  .logo span {
    color: #ff6700;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
  }
  
  nav ul li a:hover {
    color: #ff6700;
  }
  
  section#hero {
    background-image: url('hero.jpg');
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 4em;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 40px;
  }
  
  .button {
    display: inline-block;
    background-color: #ff6700;
    color: #fff;
    font-size: 1.2em;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .button:hover {
    background-color: #fff;
    color: #ff6700;
    border: 2px solid #ff6700;
  }
  
  section#products {
    background-color: #f9f9f9;
    padding: 80px 0;
  }
  
  section#products h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    margin-top: 40px;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  .product-image {
    position: relative;
  }
  
  .product-image img {
    width: 100%;
    display: block;
  }
  
  .product-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .product-card:hover .product-hover {
    opacity: 1;
  }
  
  .product-hover .button {
    background-color: #fff;
    color: #ff6700;
  }