.download-section {
    /*width: 90%;*/
    /*max-width: 920px;*/
    margin: 30px auto;
    font-family: 'Pretendard', sans-serif;
}

.download-ment {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.download-area {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    box-shadow: 0 3px 7px rgba(0,0,0,0.1);
    background: #fff;
    align-items: center;
}

.image-content img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.download-content {
    flex: 1;
    padding-left: 40px;
    border-left: solid 1px #c0c0c0;
}

.download-title {
    font-size: 24px;
    color: #0053c8;
    font-weight: 600;
    margin: 0 0 10px;
}

.download-description {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px;
}

.download-upper-text {
    /*padding-left: 30px;*/
}

.download-button-area a {
    display: inline-block;
    width: 200px;
    padding: 12px 0;
    font-size: 18px;
    border: 2px solid #0a84ff;
    /*다운로드 비활성 회색*/
    /*border: 2px solid #bbbbbb;*/
    border-radius: 8px;
    text-align: center;
    color: #fff;
    background: #0a84ff;
    /*다운로드 비활성 회색*/
    /*background: #bbbbbb;*/
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

/*다운로드 비활성 에니메이션*/
.download-button-area a:hover {
    transform: translateY(-10px);
}

/*faq section*/
/*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 {
    display: flex;
    width: 100%;
    background: none;
    border: none;
    font-size: 17px;
    text-align: left;
    padding: 15px 0 0 0;
    outline: none;
    transition: color 0.3s;
    font-weight: 600;
    /*border-bottom: 1px solid #c9d9ea;*/
}

/*답변*/
.faq-answer {
    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;
}

/* 공지게시판 버튼*/
.more-info-area {
    margin-top: 40px;
}