.lpa-53db19e0-accordion-container {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.lpa-53db19e0-item {
    border-bottom: 1px solid #e0e0e0;
}
.lpa-53db19e0-item:last-child {
    border-bottom: none;
}
.lpa-53db19e0-title-btn {
    width: 100%;
    background: #fcfcfc;
    border: none;
    padding: 15px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s ease;
}
.lpa-53db19e0-title-btn:hover {
    background: #f0f0f0;
}
.lpa-53db19e0-icon::before {
    content: '\002B'; /* Plus icon */
    font-size: 20px;
    font-weight: bold;
}
.lpa-53db19e0-item.active .lpa-53db19e0-icon::before {
    content: '\2212'; /* Minus icon */
}
.lpa-53db19e0-panel {
    background: #fff;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
    overflow: hidden;
}
.lpa-53db19e0-item.active .lpa-53db19e0-panel {
    grid-template-rows: 1fr;
}
.lpa-53db19e0-content {
    min-height: 0;
}
.lpa-53db19e0-inner-padding {
    padding: 20px;
}
.lpa-53db19e0-content p {
    margin-bottom: 15px;
}
.lpa-53db19e0-link {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
}
.lpa-53db19e0-link:hover {
    text-decoration: underline;
}
