
#main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
}

.main {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.questions_title {
  font-size: 20px;
  color: var(--primary-hover-color);
  margin-bottom: 10px;
  white-space: pre-wrap;
  font-weight: bold;
}

.questions_ansver {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.main p{
	 font-size: 16px;
  color: #6c6c6c;
  line-height: 1.6;
}
li{
	 font-size: 16px;
  color: #6c6c6c;
  line-height: 1.6;
}
.main ol{
	margin-left: 20px;
}
.main ul{
	margin-left: 20px;
}