.cta {
  text-align: center;
  padding: 25px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
}

/* Title */
.cta h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Description */
.cta p {
  font-size: 15px;
  color: #d1d1d1;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Button */
.cta-button {
  display: inline-block;
  padding: 12px 26px;
  background: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ===== Desktop ===== */
@media (min-width: 1200px) {
  .cta {
    padding: 80px 60px;
  }

  .cta h2 {
    font-size: 36px;
  }

  .cta p {
    font-size: 18px;
  }
}
