.top-content h2 {
    font-size: 24px;
}
.top-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4B4B4B;
    margin: 10px auto 10px;
}
.nmi-tips {
    border: 1px solid #D5E8FF;
    width: fit-content;
    padding: 15px 28px;
    border-radius: 12px;
    background-color: #F2F8FF;
    color: #1E40AF !important;
    font-weight: 600;
    font-size: 14px !important;
    margin-top: 25px !important;
}
.sub-head{
    letter-spacing: 0.7px;
    color: #4B4B4B;
    text-transform: uppercase;
}
.nmi-count {
    background: #EEF8E8;
    padding: 7px 10px;
    font-size: 12px;
    color: #2F6900;
}
.address-wrapper {
    flex-direction: column;
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: #999 #f3f3f3;
}
.address-wrapper::-webkit-scrollbar {
    width: 2px;
}
.address-wrapper::-webkit-scrollbar-track {
    background: #f2f2f2;
    border-radius: 10px;
}
.address-card {
    position: relative;
    padding: 25px;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.address-card.active {
    border: 2px solid #2D7A1F;
    background: #F9FFF5;
}
.address-card input{
    display:none;
}
.radio{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #E8E8E8;
    position: relative;
    flex-shrink: 0;
}
.address-card.active .radio{
    border: 2px solid #2D7A1F;
}
.address-card.active .radio::after{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#2D7A1F;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.address-content{
    flex:1;
}
.address-content h3 {
    font-size: 16px;
    margin-bottom: 7px;
}
.details{
    color: #4B4B4B;
}
.status {
    background: #2F6900;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    white-space: nowrap;
}
.search-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.search-card{
    border: 1.5px solid #E8E8E8;
    border-radius: 24px;
    padding: 26px;
}
.search-btn {
    width: 100%;
    height: 42px;   
    border-radius: 8px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
    border: 1px solid #2F6900;
    color: #2F6900;
    font-family: 'Helvetica Neue', sans-serif;
}
.search-btn:hover{
    background: #2F6900;
    color: #fff;
}
.help-box {
    background: #F7F8FA;
    border-radius: 20px;
    padding: 28px;
}
.help-content{
    flex:1;
}
.help-content h3 {
    font-size: 20px;
}
.help-content p{
    color: #4B4B4B;
    max-width: 380px;
}
.help-actions{
    display:flex;
    gap:14px;
    flex-shrink:0;
}
.help-btn {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    transition: .3s;
}
.help-btn:hover{
    border: 1px solid #2D7A1F;
    background: #F9FFF5;
}
.popup-sticky-btn {
    position: sticky;
    bottom: 0px;
    background-color: #fff;
    height: 80px;
    padding: 20px 0;
}
.popup-sticky-btn .solid_btn {
    float: inline-end;
    box-shadow: 0 14px 30px rgba(40, 113, 26, 0.35);
    cursor: pointer;
}
@media(max-width:767px){
    .address-card{
        flex-wrap:wrap;
        gap:18px;
        padding: 15px;
        border-radius: 12px;
    }
    .status{
        order:3;
    }
    .address-content{
        width:calc(100% - 60px);
    }
    .address-content h3{
        font-size: 14px;
    }
    .search-grid{
        grid-template-columns: 1fr;
    }
    .search-card{
        padding: 20px;
        border-radius: 12px;
    }
    .help-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 12px;
    }
    .top-content h2 {
        font-size: 20px;
        padding: 0;
    }
    .top-content p {
        font-size: 14px;
        margin: 5px auto 5px;
    }
    .nmi-popup-scroll {
        padding: 20px 20px 0;
    }
    .help-content h3 {
        font-size: 18px;
    }
    .nmi-tips {
        align-items: flex-start;
        text-align: left;
    }
    .nmi-tips img {
        margin-top: 3px;
    }
}