
			.cta-wrapper {
  display: flex;
  justify-content: center;   
  align-items: center;         
  position: relative;
	margin-bottom: 30px;
}
.cta-button {
  padding: 15px25px;
  background-color: #C8102E;
  color: #fff;
	text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
  background-color: #a80f25;
	border-color: #FFD700;
	color: #FFD700;
}		