* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-style: italic;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
}

.warning {
  margin: 30px 0;
}

.bold {
  font-weight: bold;
}

.highlight {
  color: #facc15;
  font-weight: bold;
}

.btn-primary {
  display: inline-block;
  background: #7f1d1d;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #991b1b;
}

.full {
  width: 100%;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.border {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.image-center {
  text-align: center;
}

.image-center img {
  max-width: 100%;
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 20px 0;
}

.italic {
  font-style: italic;
}

.price {
  font-size: 2rem;
  color: #facc15;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
}

.review {
  text-align: center;
  font-style: italic;
  color: #facc15;
}

.center {
  text-align: center;
}

.instagram {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
