.offer {
  margin: 110px auto;
  max-width: 684px;
  padding: 0 16px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #6B7280;
  display: flex;
  gap: 9px;
  width: 100%;
}
.breadcrumbs a {
  color: #6B7280;
}
.breadcrumbs a:visited {
  color: #6B7280;
}
.breadcrumbs a:hover {
  color: #155EEF;
}
.breadcrumbs svg {
  width: 6px;
  height: 10px;
  fill: #6B7280;
  margin-top: 6px;
}

.offer-top {
  padding: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offer-top .text {
  color: #6B7280;
}

.offer-body h2 {
  margin: 32px 0 24px;
  font-size: 44px;
  line-height: 1.4;
  font-family: Medium;
}
.offer-body p {
  font-family: Medium;
  line-height: 1.5;
  color: #6B7280;
}
.offer-body ul {
  margin-left: 24px;
}
.offer-body ul li {
  list-style-type: disc;
  line-height: 1.5;
  color: #6B7280;
  font-family: Medium;
}

@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 0;
  }
  .offer-top {
    padding: 24px 0 0;
  }
  .offer-body h2 {
    margin: 32px 0 4px;
    font-size: 24px;
  }
}
.cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.cta-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1264px;
  padding: 64px 32px;
  margin: 0 auto;
}

.cta-box .subtitle {
  margin-top: 12px;
  color: #4B5563;
}

.cta-btns {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .cta-wrap {
    padding: 40px 16px;
  }
  .cta-box {
    text-align: center;
    margin: 0 auto;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
}