.cs-cta-box {
  margin: 36px 0 24px;
  padding: 30px 26px;
  border: 1px solid #c7dedd;
  border-radius: 18px;
  text-align: center;
}

.cs-cta-title {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 700;
  color: #145a54;
}

.cs-cta-text {
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.45;
  color: #245c5a;
}

.cs-cta-button {
  display: inline-block;
  padding: 15px 28px;
  background: #cc6d42;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(204, 109, 66, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cs-cta-button:hover,
.cs-cta-button:focus {
  background: #bf6137;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(204, 109, 66, 0.28);
}

.cs-cta-mid {
  background: #f4f8f7;
  padding: 22px 22px;
}

.cs-cta-mid .cs-cta-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.cs-cta-mid .cs-cta-text {
  font-size: 1rem;
  margin-bottom: 14px;
}

.cs-cta-bottom {
  background: linear-gradient(180deg, #eef7f6 0%, #e7f1f0 100%);
}

@media (max-width: 700px) {
  .cs-cta-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .cs-cta-title {
    font-size: 1.5rem;
  }

  .cs-cta-text {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .cs-cta-button {
    width: 100%;
    max-width: 320px;
  }

  .cs-cta-mid .cs-cta-title {
    font-size: 1.28rem;
  }
}

