.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-card{
width:900px;
max-width:95%;
background:#f6f6f6;
border:2px solid #e67e22;
border-radius:25px;
padding:60px 80px;
}

.popup-card h2{
text-align:center;
color:#e67e22;
margin-bottom:25px;
}

.popup-card p{
font-size:16px;
line-height:1.7;
margin-bottom:20px;
}

.declaration-checkbox{
display:flex;
gap:12px;
align-items:flex-start;
margin-top:25px;
}

.popup-btn-area{
text-align:right;
margin-top:40px;
}

.popup-btn{
background:#e67e22;
color:#fff;
border:none;
padding:14px 55px;
border-radius:40px;
cursor:pointer;
}

.popup-btn:disabled{
background:#ccc;
cursor:not-allowed;
}