/* Общий стиль */
#intro {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  line-height: 1.6;
  color: #eee;
}

#intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../foto/photo2.png') center center / cover no-repeat;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

/* Контейнер */
#intro .container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.65);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Заголовки */
#intro h3 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  color: #00ffff;
  border-left: 5px solid #00ffff;
  padding-left: 15px;
}

/* Абзацы */
#intro p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #ddd;
}

/* Нумерация */
#intro p::before {
  content: "• ";
  color: #ffaa00;
  font-weight: bold;
}

/* Герой */
#hero h2 {
  font-size: 2.3rem;
  color: #ffaa00;
}

#hero .subtitle {
  font-size: 1.2rem;
  color: #d6d6d6;
  margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 600px) {
  #intro .container {
    padding: 20px;
  }
  #intro h3 {
    font-size: 1.3rem;
  }
  #intro p {
    font-size: 0.95rem;
  }
}
