/* FAQ Styling */
.wp-block-details {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.wp-block-details summary {
    padding: 1rem;
    cursor: pointer;
    background-color: #f9f9f9;
    font-weight: 500;
    user-select: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.wp-block-details summary:hover {
    background-color: #f0f0f0;
}

.wp-block-details summary::-webkit-details-marker {
    margin-right: 0.5rem;
    color: #333;
}

.wp-block-details[open] summary {
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.wp-block-details p {
    padding: 1rem;
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.wp-block-details p:last-child {
    margin-bottom: 0;
}
