.custom-accordion .custom-item {
        background: #921a23;
        color: #fff;
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

    /* HEADER DESIGN */
    .custom-header {
        padding: 18px 20px;
        background: #921a23;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        position: relative;
        user-select: none;
    }

    /* ARROW USING DATA URI */
    .custom-header::after {
        content: "";
        width: 18px;
        height: 18px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-size: 100% 100%;
        transition: transform .3s ease;
    }

    /* CONTENT BOX */
    .custom-content {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        color: #333;
        padding: 0 20px;
        transition: max-height .35s ease, padding .35s ease;
    }

    /* WHEN OPEN */
    .custom-item.active .custom-content {
        padding: 20px;
    }

    .custom-item.active .custom-header::after {
        transform: rotate(180deg);
    }

    .fw-semibold-custom {
        font-weight: 400 !important;
    }
    .fs-5-custom {
        font-size: 1.25rem !important;
    }

    .align-items-center{
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 16px;
        font-weight: 300;
    }