.custom-accordion-widget {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.accordion_card {
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.accordion-button {
    width: 100%;
    background: #A68A6D;
    color: #000;
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button.active::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content p {
    margin-top: 0;
}

.accordion-button:hover {
    background-color: #A68A6D;
}

.accordion-content {
    display: none;
    padding: 1.25rem 1.5rem;
    padding-top: 0;
    background: #A68A6D;
    font-size: 1rem;
    color: #000;
}

.accordion-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}