.button__cta {
  background-color: #2646e2;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 158px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
}

.button__cta--xl {
  width: 250px;
}

.button__cta:hover {
  background-color: #1b36c7;
}

.button__nav {
  background-color: white;
  border: none;
  border-radius: 8px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 175px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.button__nav--white {
  background-color: #f0f0f0;
}

.button__nav:hover {
  background-color: #e0e0e5;
}