/* CTA SECTION */
.cta-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.cta-box {
  background: #f5f5f5;
  padding: 1rem;
  text-align: center;
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 300px;
  height: 400px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.cta-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.cta-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Responsive: Stack boxes on smaller screens */
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: center;
  }

  .cta-box {
    flex: 1 1 90%;
    max-width: 90%;
    height: auto;
  }

  .cta-box img {
    height: auto;
  }
}