.faq {
  width: 90%;
  color: black;
  margin: 15px auto;
  font-size: 20px;
  padding-top:15px;
}

/* Reszponzív szabályok */
@media (max-width: 768px) {
  .faq {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .faq {
    width: 95%;
	font-size: 18px;
  }
}

.faq__title {
  font-size: 36px;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  /*height: 40px;*/
}

@media (max-width: 480px) {
	.faq__title {
	  font-size: 26px;
	  padding: 0;
	}
}

.faq__list {
  display: flex;
  list-style: none;
  padding: 0;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.faq__headings {
  background: #f1f1f1;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.faq__question {
  padding: 0;
  margin: 0;
  font-size: 22px;
   line-height: normal;
}

@media (max-width: 480px) {
	.faq__question {
		font-size: 18px;
	}
}

.faq__item {
  border-left: 3px solid #42b1e6;
}

.faq__mark {
  width: 25px;
}

.faq__answer > div {
  margin: 10px 10px 15px 15px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: normal;
}

.arrow-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  position: relative;
}

.faq__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

/* Felfelé mutató nyíl, ha aria-expanded true */
.faq__headings[aria-expanded="true"] .faq__arrow {
  transform: rotate(-135deg); /* Felfelé mutat */
}
