.vacancy-options {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.vacancy-option {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 22%;
}

.vacancy-option img {
  max-width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.vacancy-option p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.vacancy-button,
#more-info-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  border: none;
}

.vacancy-button:hover,
#more-info-btn:hover {
  background-color: #e64a19;
}

/* Стили для модального окна */
.modal {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

