.policy-section {
  padding: 60px 0;
  margin-top: -100px;
}

.policy-container {
  width: 85%;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.small-title {
  font-size: 12px;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
}

.small-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: orange;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.main-title {
  color: orange;
  margin-bottom: 25px;
}

.policy-block {
  margin-bottom: 25px;
}

.policy-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.policy-block h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: orange;
  position: absolute;
  left: 0;
  top: 8px;
}

.policy-block p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-section {
  padding: 60px 0;
  padding-bottom: 0px;
}

.faq-container {
  width: 85%;
  max-width: 1000px;
  margin: auto;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  bottom: 120px;
  background: #f5f5f5;
}

.faq-item {
  background: #eee;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  font-size: 14px;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  background: #bb232300;
}

.faq-answer {
  font-size: 12px;
  padding: 15px;
  display: none;
  background: #fffdfd;
  color: #444;
}
.faq-answer {
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}
