.offer-section {
  background: #eff6ff;
  padding: 90px 60px 90px 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.offer-container {
  display: flex;
  gap: 60px;
  align-items: center;
  padding:52px;
  border-radius:18px;
  margin:0 auto; 
  width:1207px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* LEFT */
.offer-content {
  max-width:630px;
}

.badge-special {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7efff;
  color: #1e3a8a;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.offer-content h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111827;
}

.description {
  font-size: 20px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 28px;
}

.features-offer {
  list-style: none;
  margin-bottom: 36px;
}
.features-offer ul{margin-left:0px;}
.features-offer li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #374151;
  margin-left:-41px;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #1e3a8a; /* blue circle */
  border-radius: 50%;
  position: relative;
}

/* Tick mark */
.check-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}


.cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 16px 26px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

/* RIGHT IMAGES */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 18px;
}

.image-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width:768px) {
  .offer-container {
    flex-direction: column;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-section{padding-top:123px;}
  .offer-content h1 {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 20px;
  color: #111827;
}
.offer-section {
    background: #eff6ff;
    padding: 60px 5px 78px 1px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.description {
    font-size: 16px;
    color: #4b5563;
    /* line-height: 1.7; */
    margin-bottom: 28px;
}
.offer-container {
  display: flex;
  gap: 60px;
  align-items: center;
  padding:15px;
  border-radius:18px;
  margin:0 auto; width:91%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

}