.PI-T3-main-heading {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 20px 0;
}

.PI-T3-wrapper {
    display: flex;
    border: 1px solid #0756A51A;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 35px;
}

.PI-T3-options {
    width: 35%;
    border-right: 1px solid #0756A51A;
}

.PI-T3-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 14px;
}

/* Label structure */
.PI-T3-option {
    display: flex!important;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #0756A51A;
    margin-bottom: 0;
}

.PI-T3-option:hover {
    background: #F5FAFF;
}

.PI-T3-option input {
    display: none;
}

.PI-T3-item.active .PI-T3-option {
    background: #F5FAFF;
}

.PI-T3-radio {
    width: 24px;
    height: 24px;
    border: 1px solid #000075;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.PI-T3-option input:checked+.PI-T3-radio::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #000075;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.PI-T3-option-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

.PI-T3-option-text img {
    display: inline-block;
}


/* RIGHT SIDE content (desktop) */
.PI-T3-content {
    width: 65%;
    padding: 20px 25px;
    background: #fff;
}

.PI-T3-panel {
    display: none;
}

.PI-T3-panel-heading {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 25px 0;
}

.PI-T3-panel.active {
    display: block;
}


/* Mobile: we move PI-T3-content under selected option */
@media (max-width:992px) {
    .PI-T3-wrapper {
        display: block;
    }

    .PI-T3-options {
        width: 100%;
        border-right: none;
    }

    .PI-T3-content {
        width: 100%;
        padding: 20px;
    }

    .PI-T3-option {
        border-top: 1px solid #0756A51A;
    }
}