.pro-privacy-box {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
}

.pro-privacy-box h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.pro-checkbox {
    display: flex;
    align-items: center;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
}

.pro-checkbox input {
    display: none;
}

.pro-checkbox span {
    width: 18px;
    height: 18px;
    border: 2px solid #3483fa;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}

.pro-checkbox input:checked + span::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #3483fa;
    top: 2px;
    left: 2px;
}