/* Asked Questions Start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.faq-section {
  padding: 100px 5%;
  background: #f7f7f7;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.faq-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.faq-left,
.faq-right {
  flex: 1;
}

.subtitle {
  display: inline-block;
  color: #7a8c7b;
  font-size: 14px;
  margin-bottom: 20px;
}

.faq-left h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
}

.faq-left h2 span {
  display: block;
  color: #87909a;
}

.description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.faq-wrapper {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 25px 0;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 22px;
  font-weight: 500;
  text-align: left;
}

.icon {
  font-size: 30px;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-right img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 991px) {
  .faq-content {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .faq-left h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }
}

/* Asked Questions Start End*/