.faq-section {
  padding: 60px 100px;
  background-color: #f9f9f98a;
}

.faq-container {
  max-width: 1750px;
  margin: auto;
}

.faq-subtitle {
  color: #ff7300;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 32px;
  color: #ff4800;
  font-weight: bold;
  margin-bottom: 40px;
}

.faq-item {
  border-top: 1px solid #eedcd0ce;
  border-bottom: 1px solid #eedcd0;
  margin-bottom: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 50, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  color: #ff7300;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fdece3d7;
}

.entezgayrimenkul-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
}

.entezgayrimenkul-icon::before,
.entezgayrimenkul-icon::after {
  content: '';
  position: absolute;
  background-color: rgb(185, 85, 3);
  transition: transform 0.3s ease;
}

.entezgayrimenkul-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.entezgayrimenkul-icon::after {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .entezgayrimenkul-icon::after {
  transform: scaleY(0); /* "-" yap */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 20px;
}
