.offers-section {
  position: relative;
  padding-top: 6rem;
  background: #fff; /*#f5f5f5; /* light background */
  color:  #012852; 
  text-align: center;
  border: none;        /* remove any border */
  box-shadow: none;    /* remove any shadow */
  margin:0;
}

.offers-header {
  position: relative;
  width: 100%;
  max-width: none;
  margin-bottom: 3rem;
  text-align: center;
  padding: 0 1rem;
  z-index: 1;
  border: none;        /* ensure no border */
  box-shadow: none;    /* ensure no shadow */
}


.offers-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #0056d2;
}

.offers-header p {
  color: #555;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;      /* keep paragraph readable */
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center all cards */
  gap: 1.5rem;
}

.offer-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px;
  text-align: center;
}

.offer-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.offer-card p {
  flex-grow: 1;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.offer-cta {
  margin-top: 1.25rem;
  font-weight: 600;
  color: #0056d2;
  text-decoration: none;
  font-size: 1rem;
}

.offer-cta:hover {
  text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px) {
  .offers-section { padding: 4rem 1rem; }
  .offers-header h2 { font-size: 2.5rem; }
  .offers-header p { font-size: 1.1rem; }
  .offer-card { padding: 1.5rem; max-width: 90%; }
  .offer-card h3 { font-size: 1.3rem; }
  .offer-card p, .offer-cta { font-size: 0.95rem; }
}

@media(max-width: 480px) {
  .offers-header h2 { font-size: 2rem; }
  .offers-header p { font-size: 1rem; }
  .offer-card h3 { font-size: 1.2rem; }
  .offer-card p, .offer-cta { font-size: 0.9rem; }
}

