.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #999;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: transparent;
}

.accordion-button.active {
    background-color: transparent;
    color: inherit;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    background-color: #fafafa;
    opacity: 0;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 5000px;
    padding: 20px;
    opacity: 1;
}