.button-group {
  display: flex;
  gap: 25px;
}

.btn {

  align-items: center;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 25px;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn .icon {
  margin-right: 4px;
  font-size: 14px;
}

/* Blue Brochure Button */
.btn.brochure {
  background: #0F255A;
  color: #fff;
}

/* Dark Apply Now Button */
.btn.apply {
  background: #333;
  color: #fff;
  border-radius: 1px;
}

.btn:hover {
  opacity: 0.85;
}