
.cta-section {
  background-color: #643ea8; /* Vibrant orange background */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  color: #f39200;
  background-color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #fff7e6;
  color: #f39200;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 16px;
  }
}