/*---------------------------
style faq
---------------------------*/
/* style faq */
.faq-container { 
    margin: 20px auto;
    padding: 10px;
    
    border-radius: 8px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-question .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    color: #555;
    display: none;
    padding: 10px;
	border-bottom: 1px solid #EF8D49;
    border-left: 4px solid #EF8D49 ;
    border-right: 4px solid #EF8D49 ;
    margin-top: 5px;
    border-radius: 5px;
    margin: 0 20px;
}

.faq-question.active .arrow {
    transform: rotate(90deg);
}
.faq-question svg {
  font-size: 10px;
  width: 10px;
  left: 34px;
  position: absolute;
}
.faq-container label {
  font-size: 2em;
  font-weight: bold;
}

/* style faq */
.faq-container { 
    margin: 20px auto;
    padding: 10px;
    
    border-radius: 8px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    
    border-radius: 5px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-question .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    color: #555;
    display: none;
    padding: 10px;
	border-bottom: 1px solid #EF8D49;
    border-left: 4px solid #EF8D49 ;
    margin-top: 5px;
    border-radius: 5px;
}

.faq-question.active .arrow {
    transform: rotate(90deg);
}
.faq-question svg {
  font-size: 10px;
  width: 10px;
  left: 34px;
  position: absolute;
}
.faq-container label {
  font-size: 2em;
  font-weight: bold;
}
