.wbz-tac-container {
    margin: 18px 0 20px;
    padding: 16px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
    text-align: left;
}

.wbz-tac-header {
    margin-bottom: 12px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.4;
}

.wbz-tac-field {
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid #eef0f3;
}

.wbz-tac-field:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.wbz-tac-field:last-child {
    padding-bottom: 0;
}

.wbz-tac-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #344054;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.55;
}

.wbz-tac-box {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.wbz-tac-checkbox {
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.wbz-tac-checkmark {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.18s ease;
}

.wbz-tac-checkbox:checked + .wbz-tac-checkmark {
    border-color: #16a34a;
    background: #16a34a;
}

.wbz-tac-checkbox:checked + .wbz-tac-checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wbz-tac-checkbox:focus + .wbz-tac-checkmark {
    outline: 2px solid rgba(22, 163, 74, 0.25);
    outline-offset: 2px;
}

.wbz-tac-text {
    display: block;
}

.wbz-tac-text a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wbz-tac-text a:hover {
    color: #1d4ed8;
}

@media (max-width: 480px) {
    .wbz-tac-container {
        padding: 14px;
        border-radius: 8px;
    }

    .wbz-tac-label {
        font-size: 13px;
    }
}