.faq-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .faq-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 16px 20px;
    transition: all 0.2s ease-in-out;
  }

  .faq-item[open] {
    background-color: #ffffff;
    border-color: #ff6e00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .faq-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .faq-title::-webkit-details-marker {
    display: none;
  }

  .faq-title::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #ff6e00;
    border-bottom: 2px solid #ff6e00;
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;
    margin-left: 15px;
    flex-shrink: 0;
  }

  .faq-item[open] .faq-title::after {
    transform: rotate(-135deg);
  }

  .faq-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    color: #4a4a4a;
    line-height: 1.6;
  }

  .faq-content p {
    margin: 0;
  }