/* /css/manual.css - 사용자 매뉴얼 전용 스타일시트 */

.manual-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.manual-header {
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.manual-header h1 {
    font-size: 2.8rem;
    margin: 0;
}

.manual-header p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

.manual-section {
    margin-bottom: 60px;
}

.manual-section h2 {
    font-size: 2rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.manual-section h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.manual-section p, .manual-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.manual-section ul, .manual-section ol {
    padding-left: 25px;
}

.manual-section .feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.features-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.features-table tr:last-child td {
    border-bottom: none;
}

.features-table td:first-child {
    width: 35%;
    font-weight: bold;
    color: #007bff;
    vertical-align: top;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

.call-to-action {
    background-color: #eaf2f8;
    border: 1px solid #bde0fe;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
}

.call-to-action h2 {
    border-bottom: none;
    margin-bottom: 10px;
}

/* [신규] FAQ 아코디언 스타일 */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 10px;
    cursor: pointer;
    position: relative;
    outline: none;
    list-style: none; /* 기본 화살표 제거 */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* 크롬/사파리 기본 화살표 제거 */
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    background-color: #f8f9fa;
    line-height: 1.7;
}
