/*strpl06: create file*/

.faq-section {
    /*max-width: 900px;*/
    margin: 50px auto;
    padding: 0 20px;
    font-family: "Malgun Gothic", 한컴돋움, Dotum, '돋움', Helvetica, AppleSDGothicNeo, sans-serif;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    border-bottom: 2px solid #d0e6f7;
    padding-bottom: 10px;
}

.faq-item {
    /*border-top: 1px solid #c9d9ea;*/
    padding: 0 0;
}

/*질문 버튼*/

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 20px 0 10px 0;
    outline: none;
    transition: color 0.3s;
    border-bottom: 1px solid #c9d9ea;
}

.faq-question[aria-expanded="true"] {
    font-weight: bold;
    color: #1874c6;
}

.faq-question::before {
    content: "▸";
    display: inline-block;
    color: #555;
    transition: transform 0.4s ease;
    margin-right: 2px;
}

.faq-question[aria-expanded="true"]::before {
    transform: rotate(90deg);
}

/*답변*/
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    padding-left: 20px;
    border-bottom: 1px solid #c9d9ea;
}

.faq-answer p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.5;
}

p.answer-title {
    font-weight: bold;
    font-size: 17px;
}

/*게시판 유도*/
.to-userboard {
    display: flex;
    margin: 1em;
    margin-top: 3em;
}

#cant-find-your-answer {
    font-size: 1.2em;
    color: #666666;
    margin: 0 auto;
}

#cant-find-your-answer a{
    color: #1874c6;
}