:root {
  --blue: #1E3A8A;
  --magenta: #D23C77;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--white);
  color: #333;
  line-height: 1.6;
}

.cta-button {
  background-color: var(--magenta);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b8326a;
  transform: translateY(-3px);
}