.offer-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.offer-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 4px solid transparent;
  text-align: center;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top-color: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.offer-icon {
  width: 50px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.offer-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.offer-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
  padding: 0 15px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

@media (max-width: 768px) {
  .offer-section {
      padding: 50px 0;
  }
  
  .section-heading h2 {
      font-size: 2rem;
  }
  
  .offer-card {
      padding: 25px;
  }
  
  .offer-icon {
      width: 60px;
  }
}