
.cta-banner {
  width: 100%;
  max-width: 1210px;
  height: 214px;
  border-radius: 30px;
  background: url("https://webbingstone.com/wp-content/uploads/2025/09/01d73b2a22105b131eb051b882a0a22a11b2e95f.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.cta-banner h2 {
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 20px;
  color: white;
}

.cta-btn {
  background: #ff5a3c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #e0492d;
}

@media (max-width: 768px) {
  .cta-banner {
    height: auto;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}
