.privacy_policy_content {
  padding: 20px 0;
}

.terms_conditions_content {
  padding: 20px 0;
}

.why_choose_content {
  padding: 20px 0;
}

.quality_process_content {
  padding: 20px 0;
}

/* Faq Page Css */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  margin-bottom: 50px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  padding: 0 10px;
  font-size: 18px;
  visibility: hidden;
  opacity: 0;
  text-align: justify;
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  padding: 0 15px 20px;
}
