.agreement-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(var(--primary-rgb), 0.5);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    background: white;
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked {
    background: rgb(var(--primary-rgb));
    border-color: rgb(var(--primary-rgb));
}

.custom-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.8rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.checkbox-label a {
    color: rgb(var(--primary-rgb));
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}