article.box.page-content header.faq {
    position: relative;
    padding-left: 40px;
    color: #1a3e6e;
    margin-bottom: 1.5em;
}

article.box.page-content header.faq h2 {
    font-size: 1.65em;
    margin: 0;
}

article.box.page-content header.faq::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2196F3, #0D47A1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

article.box.page-content section.faq {
    background: #f8fafd;
    border-radius: 16px;
    padding: 1.5em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e8f0;
    transition: box-shadow 0.3s ease;
}

article.box.page-content section.faq:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

article.box.page-content section.faq dl {
    margin: 0;
    padding: 0;
}

article.box.page-content section.faq dl dt {
    background: white;
    padding: 0.9em 1.2em 0.5em 1.2em;
    border-left: 4px solid #2196F3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 0.8em;
    margin-bottom: 0;
    font-size: 1.1em;
    color: #0a2a4a;
    transition: background 0.25s ease, border-color 0.25s ease;
}

article.box.page-content section.faq dl dt:first-of-type {
    margin-top: 0;
}

article.box.page-content section.faq dl dt:hover {
    background: #f0f7ff;
    border-left-color: #0D47A1;
}

article.box.page-content section.faq dl dd {
    margin-left: 0 !important;
    padding: 0.5em 1.2em 1em 2em;
    background: #ffffff;
    border-left: 4px solid #2196F3;
    border-bottom: 1px solid #e0e8f0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1em;
    transition: background 0.25s ease;
}

article.box.page-content section.faq dl dd:hover {
    background: #fafcff;
}

article.box.page-content section.faq dl dd code.inline {
    background: #eef3fa;
    color: #0D47A1;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-size: 0.9em;
    border: 1px solid #c5d5e8;
}

@media (max-width: 768px) {
    article.box.page-content header.faq {
        padding-left: 35px;
    }
    article.box.page-content header.faq h2 {
        font-size: 1.5em;
    }
    article.box.page-content header.faq::before {
        width: 28px;
        height: 28px;
        font-size: 1em;
    }
    article.box.page-content section.faq {
        padding: 1em;
        border-radius: 12px;
    }
    article.box.page-content section.faq dl dt {
        font-size: 1em;
        padding: 0.7em 1em 0.4em 1em;
    }
    article.box.page-content section.faq dl dd {
        padding: 0.4em 1em 0.7em 1.8em;
        font-size: 0.95em;
    }
}