
.vc-widget-container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.vc-widget-title {
    cursor: pointer;
    padding: 10px;
    background-color: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vc-widget-title .vc-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.vc-widget-container.active .vc-arrow {
    transform: rotate(180deg); /* Flip arrow when active */
}

.vc-widget-content {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
}

.vc-widget-content p {
    margin: 5px 0;
}

.vc-widget-content a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
