* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container-faq {
  font-family: "Barlow", sans-serif;
  max-width: 1200px;
  margin: 100px auto 40px;
  padding: 20px;
  background-color: #1a1a1a;
  color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.container-faq p,
.container-faq ul {
  letter-spacing: 0.02rem;
  line-height: 1.6;
  text-align: left;
  color: #f0f0f0 !important;
  opacity: 1 !important;
  font-weight: 300;
}
.faq-section {
  margin-bottom: 30px;
}
.faq-section h1 {
  color: #f1f1f1;
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
}
.faq-section h2 {
  font-size: 20px;
  font-weight: 500;
}
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding: 15px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  background-color: #252525;
}
.faq-question {
  font-weight: 600;
  color: #f1f1f1;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #e3e3e3;
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-answer {
  margin: 15px 0;
  display: none;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  padding-left: 10px;
  border-left: 3px solid #444;
}
.faq-answer p {
  margin-bottom: 15px;
}
.faq-answer ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.faq-answer ul li {
  margin-bottom: 8px;
}
.faq-answer a {
  color: #4a9df1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.faq-answer a:hover {
  color: #7fb7f5;
  text-decoration: underline;
}
section::after {
  display: none;
}
@media (max-width: 768px) {
  .container-faq {
    margin-top: 80px;
    padding: 15px;
  }
  .faq-section h1 {
    font-size: 20px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .container-faq {
    margin-top: 70px;
    padding: 10px;
  }
  .faq-section h1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .faq-item {
    padding: 10px;
  }
}
