/* Basic styling for Home Security Health Check forms */
.hs-self-form, .hs-pro-form {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    max-width: 800px;
}
.hs-self-form h3, .hs-pro-form h3 {
    margin-top: 0;
}
.hs-question, .hs-category {
    margin-bottom: 15px;
}
.hs-question label, .hs-question legend,
.hs-category label, .hs-category legend {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.hs-question-row {
    margin-bottom: 10px;
}
.hs-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.hs-btn:hover {
    background-color: #005177;
}

.hs-btn.hs-btn-secondary {
    background-color: #2d6a4f;
}
.hs-btn.hs-btn-secondary:hover {
    background-color: #1b4332;
}

.hs-intro {
    margin-bottom: 15px;
}
.hs-intro h2 {
    margin: 0 0 10px 0;
}
.hs-intro p {
    margin: 0 0 10px 0;
}

.hs-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.hs-self-results, .hs-results {
    border: 1px solid #eee;
    padding: 20px;
    background-color: #fff;
    max-width: 800px;
}
.hs-self-results h3, .hs-results h3 {
    margin-top: 0;
}

.hs-pre-cta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}