.advantages-section {
  background-color: #f6f6f6;
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 40px;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

.advantage-text {
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 500;
  margin-top: 15px;
}
