/* --- Современная секция с текстом и опросником --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.stroy-quiz-section {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 50px;
  margin: 50px 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1f1f1f;
  line-height: 1.55; /* комфортный межстрочный интервал */
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Заголовки */
.stroy-quiz-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #0d1b4c;
  line-height: 1.25;
}

/* Основной текст */
.stroy-quiz-section .intro-text {
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 18px;
}

/* Списки */
.stroy-quiz-section .quiz-list {
  margin: 20px 0 25px 0;
  padding-left: 20px;
  list-style: none;
}

.stroy-quiz-section .quiz-list li {
  font-size: 16px;
  color: #555555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.stroy-quiz-section .quiz-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1b4c, #3a5fff);
}

/* Блок с квизом */
.stroy-quiz-section .quiz-container {
  margin-top: 35px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stroy-quiz-section .quiz-container iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 16px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .stroy-quiz-section {
    padding: 40px;
  }
  .stroy-quiz-section h2 {
    font-size: 32px;
  }
  .stroy-quiz-section .intro-text,
  .stroy-quiz-section .quiz-list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .stroy-quiz-section {
    padding: 30px;
  }
  .stroy-quiz-section h2 {
    font-size: 28px;
  }
  .stroy-quiz-section .intro-text,
  .stroy-quiz-section .quiz-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .stroy-quiz-section {
    padding: 20px;
  }
  .stroy-quiz-section h2 {
    font-size: 24px;
  }
  .stroy-quiz-section .intro-text,
  .stroy-quiz-section .quiz-list li {
    font-size: 14px;
  }
}
