/* CTA Button Styles */
.cta-button {
  display: inline-block;
  background-color: #d6443c; /* Brand color */
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #b93a33; /* Slightly darker for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  background-color: #a8352f; /* Deeper tone when clicked */
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}
