.nh-permit-checklist-wrapper {
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f9fafb;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: inherit;
}

.nh-permit-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.nh-permit-intro {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #444;
}

.nh-permit-form {
    margin-bottom: 1.5rem;
}

.nh-permit-field-group {
    margin-bottom: 1rem;
}

.nh-permit-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.nh-permit-field-group input[type="text"],
.nh-permit-field-group select {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.nhp-inline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.nhp-inline-options label {
    font-weight: 400;
}

.nhp-inline-options-stacked {
    flex-direction: column;
}

.nh-permit-submit {
    display: inline-block;
    background: #00539b;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.nh-permit-submit:hover,
.nh-permit-submit:focus {
    background: #003f75;
}

.nh-permit-result {
    display: none;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 1rem;
}

.nh-permit-result-visible {
    display: block;
}

.nh-permit-checklist-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.nh-permit-checklist-list li {
    margin-bottom: 0.4rem;
}

.nh-permit-notes h4,
.nh-permit-cta h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.nh-permit-notes ul {
    margin: 0 0 1rem 1.25rem;
}

.nh-permit-cta {
    background: #eef6ff;
    border-radius: 6px;
    padding: 0.875rem 1rem;
    border: 1px solid #d3e5ff;
    margin-top: 1rem;
}

.nh-permit-cta-button {
    display: inline-block;
    text-decoration: none;
    background: #0073aa;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

.nh-permit-cta-button:hover,
.nh-permit-cta-button:focus {
    background: #005f8a;
}

/* Footer note */
.nh-permit-footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #555;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .nh-permit-checklist-wrapper {
        padding: 1rem;
    }

    .nh-permit-title {
        font-size: 1.3rem;
    }

    .nhp-inline-options {
        flex-direction: column;
    }
}