.sa-accordion {
    max-width: 700px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sa-item {
    border-bottom: 1px solid #ccc;
}

.sa-title {
    margin: 0;
    padding: 15px;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 18px;
}

.sa-content {
    display: none;
    padding: 15px;
    background: #fff;
}

.sa-image img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}
.sa-title {
    margin: 0;
    padding: 15px;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 18px;
    position: relative;
}

.sa-title::after {
    content: "▼"; /* Down arrow */
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.sa-title.active::after {
    transform: translateY(-50%) rotate(180deg); /* Rotate to point up */
}
