/* Intro Section */
.intro-section {
  position: relative; /* Добавлено для позиционирования иконки */
  background: linear-gradient(90deg, #333, #555);
  color: #fff;
  padding: 25px 10%;
  text-align: center;
}

.intro-content {
  position: relative; /* Для корректного позиционирования иконки */
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.intro-content .btn.learn-more {
  padding: 10px 20px;
  background-color: #2d69c6;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.intro-content .btn.learn-more:hover {
  background-color: #fff;
  color: #000;
}

/* Стили для иконки закрытия */
.close-icon {
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.close-icon:hover {
  color: #2d69c6;
}
