/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 08 2026 | 09:59:25 */
.faq-section {
    margin: 40px 0;
}

.faq-section h2 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.faq-section details {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
}

.faq-section summary {
    position: relative;
    padding: 18px 50px 18px 18px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
    color: #1d1d1d;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #0d6efd;
    border-bottom: 2px solid #0d6efd;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-section details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq-section details[open] {
    border-color: #d8e6ff;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.08);
}

.faq-section details div[itemprop="acceptedAnswer"] {
    padding: 0 18px 18px;
    border-top: 1px solid #f1f1f1;
}

.faq-section details p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}