/* ======= Heading ======= */
.sp-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.sp-heading h3,
.sp-heading h4,
.sp-heading h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
}

.card-body h4,
.card-body h5,
.card-body h6 {
  font-size: 18px;
}

.card-footer a {
  font-size: 15px !important;
}

/* ======= Container B / Feature Boxes ======= */
.container-b {
  text-align: center;
  padding: 0 60px;
}

.container-b .feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  min-height: 60px;
}

.container-b i {
  font-size: 36px;
  color: #007bff;
  flex-shrink: 0;
}

.container-b p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* ======= Offer Box ======= */
.offer-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.offer-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.offer-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.offer-box h6 {
  font-weight: 600;
  color: #1a0480;
}

/* ======= Section Title ======= */
.section-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a0480;
}

.text-title {
  background-color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ======= Subscribe Section ======= */
.subscribe-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.subscribe-img-wrapper {
  padding: 30px 0;
  display: flex;
  align-items: stretch;
}

.subscribe-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.subscribe-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* ======= Responsive Styles ======= */
@media (min-width: 992px) {
  .subscribe-img {
    height: 100%;
  }

  .subscribe-img-wrapper {
    height: auto;
    flex: 1;
  }
}

@media (max-width: 767.98px) {
  .subscribe-img-wrapper {
    padding: 0;
  }

  .subscribe-img {
    height: auto;
    object-fit: contain;
  }

  .container-b i {
    font-size: 24px;
    padding: 5px;
  }

  .container-b p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    padding: 0;
  }

  .offer img {
    position: absolute;
    max-width: 100%;
    max-height: 90%;
    bottom: 0;
  }
}
