.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.call-button {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  background: #214b9b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.call-button:hover,
.call-button:focus {
  background: #183a79;
  text-decoration: none;
}

.call-button:focus {
  outline: 2px solid #183a79;
  outline-offset: 2px;
}

.call-text {
  margin-top: 1rem;
  line-height: 1.6;
}

.call-email {
  color: #214b9b;
  font-weight: 600;
  text-decoration: underline;
}

.call-email:hover,
.call-email:focus {
  color: #183a79;
}