/* Сброс базовых стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 40px;
  background-image: url(../other/images/background1.png); /* Укажи свой путь */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-content {
  max-width: 60%;
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.intro-content.show {
  opacity: 1;
  transform: translateY(0);
}


.intro-content.hidden {
  opacity: 0;
  transform: translateY(50px);
}

/* Текст внутри приветственного блока */
.intro-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #15324f;
}

.intro-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.intro-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.intro-content li {
  margin-bottom: 10px;
}

/* Кнопка */
.cta-button {
  background-color: #0d63a5;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #0a4f85;
  transform: scale(1.05);
}

/* Поддержка адаптивности */
@media (max-width: 992px) {
  .intro-content {
    max-width: 80%;
    padding: 30px;
  }

  .intro-content h1 {
    font-size: 26px;
  }

  .intro-content p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .intro-content {
    max-width: 95%;
    padding: 20px;
  }

  .intro-content h1 {
    font-size: 22px;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
  }
}
