/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

/* Offer Hero Section */
.offer-hero {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #ffd700;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffd700;
  color: #1e3c72;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffcc00;
}

/* Offer Cards Grid */
.offer-cards-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #1e3c72;
  margin-bottom: 40px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.offer-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.offer-card h3 {
  font-size: 18px;
  color: #1e3c72;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 14px;
  color: #555;
}

/* How to Claim Section */
.how-to-claim {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.how-to-claim h2 {
  font-size: 28px;
  color: #1e3c72;
  margin-bottom: 30px;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  background: #f0f0f0;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step span {
  display: inline-block;
  background: #ffd700;
  color: #1e3c72;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
}

/* Notes Section */
.notes-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.notes-section h2 {
  font-size: 28px;
  color: #1e3c72;
  margin-bottom: 20px;
}

.notes-list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: auto;
}

.notes-list li {
  font-size: 15px;
  margin-bottom: 12px;
  background: #fff3cd;
  padding: 12px 18px;
  border-radius: 8px;
  color: #856404;
  border: 1px solid #ffeeba;
  text-align: left;
}

/* Back Button */
.back-home {
  text-align: center;
  padding: 30px 0;
}

.back-btn {
  background-color: #1e3c72;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #163261;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-grid {
    flex-direction: column;
    align-items: center;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}
