body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.hero {
  height: 100vh;
  background: #C00000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
}

.diagonal-section {
  background: #fff;
  padding: 100px 20px;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-item {
  background: white;
  border: 2px solid #008000;
  border-radius: 8px;
  padding: 20px;
  font-weight: bold;
}

.contact {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
