.cpp-box {
    border: 1px solid #d9d9d9;
    background: #ffffff;
    padding: 18px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    font-size: 14px;
    line-height: 1.55;
}

.cpp-header h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #1f2d3d;
}

.cpp-table-wrapper {
    overflow-x: auto;
}

.cpp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cpp-table th,
.cpp-table td {
    border: 1px solid #cfcfcf;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.cpp-table th {
    width: 28%;
    background: #f4f6f8;
    font-weight: 600;
    color: #243447;
}

.cpp-consent {
    margin-top: 14px;
    padding-top: 8px;
}

.cpp-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.cpp-consent input[type="checkbox"] {
    margin-top: 4px;
    min-width: 16px;
    width: 16px;
    height: 16px;
}

.cpp-link {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cpp-box {
        padding: 14px;
    }

    .cpp-header h3 {
        font-size: 16px;
    }

    .cpp-table th,
    .cpp-table td {
        font-size: 13px;
        padding: 8px;
    }

    .cpp-table th {
        width: 36%;
    }
}