@charset "UTF-8";
.faq-list {
  max-width: 800px;
  margin: 20px 0;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.faq-item[open] .faq-question::after {
  content: "−";
  transform: translateY(-50%);
}

.faq-question {
  background-color: #f8f9fa;
  cursor: pointer;
  padding: 16px 20px;
  margin: 0;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: #e9ecef;
}
.faq-question h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  padding-right: 40px;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #666;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.faq-answer {
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #e9ecef;
}
.faq-answer p {
  margin: 0 0 10px !important;
  line-height: 1.7;
  color: #555;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item details[open] .faq-answer {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin: 15px 0;
  }
  .faq-item {
    margin-bottom: 8px;
    border-radius: 4px;
  }
  .faq-question {
    padding: 12px 16px;
  }
  .faq-question h3 {
    font-size: 14px;
    padding-right: 35px;
  }
  .faq-question::after {
    font-size: 18px;
    right: 12px;
    width: 26px;
    height: 26px;
  }
  .faq-answer {
    padding: 16px;
  }
  .faq-answer p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .faq-question {
    padding: 10px 12px;
  }
  .faq-question h3 {
    font-size: 13px;
    line-height: 1.4;
    padding-right: 30px;
  }
  .faq-question::after {
    font-size: 16px;
    right: 8px;
    width: 22px;
    height: 22px;
  }
  .faq-answer {
    padding: 12px;
  }
  .faq-answer p {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */