.faq-container {
  display: flex;
  gap: 60px;
  max-width: 100%;
  width: 100%;
}

.faq-header {
  flex: 1;
}

.faq-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-header p {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

.faq-list {
  flex: 2;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  background: #f5f8fc;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: #444;
}

.faq-item.active .faq-answer {
  padding: 18px 24px;
  max-height: 200px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

body {
  font-family: poppins;
}

.faq_section {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  background-image: url("../Resources/Images/peacock_feather1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq-container {
  display: flex;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.faq-header {
  flex: 1;
  background-position: center;
  background-size: cover;
  border-radius: 19px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.faq-header h2 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 61px;
}

.faq-header p {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

.faq-list {
  flex: 2;
}

.faq-item {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: #444;
}

.faq-item.active .faq-answer {
  padding: 18px 24px;
  max-height: 200px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.section_one {
  padding: 1.5rem 5rem;
  height: 100vh;
}

.img_side_to_contact_us {
  background-image: url('../Resources/Images/download1.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 56%;
  height: 92%;
  border-radius: 20px;
}

@media screen and (max-width: 480px) {
  .faq-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    flex-direction: column;
  }

  .faq_section {
    height: 128vh;
  }

  .section_one {
    padding: 1.5rem 2rem;
  }

  .img_side_to_contact_us {
    width: 100%;
  }
}