.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;
    align-items: center;
    width: 100%;
  }
}