@charset "utf-8";
/* accordion style */	
  .faq-accordion {
    max-width: 768px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid #e5e7eb;
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
	font-size: 20px;
  }

  .faq-question:hover {
    text-decoration: underline;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding: 0 0 18px 0;
    line-height: 1.7;
	font-size: 16px;
  }

  .faq-answer.open {
    display: block;
  }	
/* ***************** */	

