.advantages-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f7fa; /* Цвет фона секции */
}

.advantages-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333333;
}

.advantages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.advantage-card {
  background: linear-gradient(
    180deg,
    #4a90e2,
    #8ec5fc
  ); /* Градиент для карточки */
  color: #ffffff;
  border-radius: 16px;
  padding: 40px 20px; /* Увеличенный отступ для высоты */
  text-align: center;
  max-width: 300px;
  width: 100%;
  height: 400px; /* Фиксированная высота карточек */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: scale(1.05);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.advantage-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.advantage-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.advantage-button {
  background-color: #ffffff;
  color: #4a90e2;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.advantage-button:hover {
  background-color: #4a90e2;
  color: #ffffff;
}

.language-buttons {
  margin-top: 20px;
}
.language-buttons button {
  margin: 5px;
  padding: 10px 15px;
  font-size: 1em;
  cursor: pointer;
}
