/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2025 | 04:07:36 */
.accordion-header {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.accordion-header::after {
    content: "▾"; /* smaller caret */
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
	display: none;
}