/* services.css - Stili per la pagina Properties */

/* ===== CTA SECTION ===== */
.cta-section {
  background: #DCEFDA;
  color: #004B37;
  text-align: center;
  padding: 5rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid #e0e0e0;
}

.cta-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #004B37;
}

.cta-section p {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 2rem;
  color: #004B37;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #2D8B6F;
  color: #DCEFDA;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #004B37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
