#test-form-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

#test-form-choice .target-option {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fafafa;
    text-align: center;
    position: relative;
}

#test-form-choice .target-option:hover {
    border-color: #b0b0b0;
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#test-form-choice input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

#test-form-choice .target-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

#test-form-choice .target-sub {
    font-size: 0.8rem;
     color: #565656;
    display: block;
}

#test-form-choice .target-option:has(input:checked) {
    border-color: #a21f11;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

#test-form-choice .target-option:has(input:checked) .target-label {
    color: #a21f11;
    font-weight: 700;
}

#test-form-choice .target-option:has(input:checked) .target-sub {
    color: #a21f11;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a21f11;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #d51410;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #a61e1b;
}

.error-msg {
    color: #a21f11;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}

.sr-only {
  display: none;
}

.lead-form-sub-content {
    margin-bottom: 20px;
}

.lead-form-sub-content-heading {
    margin-top: 10px;
}

.lead-form-sub-content-description {
    margin-bottom: 0;
}