body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.offers-page h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.offers-page p {
  font-size: 1.1rem;
  color: #bbbbbb;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.offer-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.offer-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.offer-card p {
  font-size: 1rem;
  color: #cccccc;
}

.highlight {
  color: #4caf50;
  font-weight: bold;
}
