.faq {
    margin-top: 80px;
    margin-bottom: 100px;
}
.faq .title {
    text-align: center;
    color: #000;
    margin-top: 150px;
    margin-bottom: 40px;
    font-size: 50px; 
  	font-weight: 900;
}

 
  
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-item button:hover,
.faq-item button:focus {
  background: none;
  color: #000;
}  
.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  color: #000;
}  
.faq-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 24px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  margin-right: 12px;
  transition: transform 0.3s ease;
  border-radius: 50%;
  border: 1px solid;
}
.faq-text {
  flex: 1;
  font-weight: 900;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 0 16px 36px;
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.5;
}
.faq-item.open .faq-answer {
  max-height: 500px; /* Достаточно большое значение, чтобы уместился текст */
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
  














































































