body {
    color: #333;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
main {
    background-image: url(images/govt-buildings.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    background-attachment: fixed;
}
a {
    color: #005eb8;
    text-decoration: underline;
    transition: color 0.18s;
}
h1, h2, h3 {
    font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5em;
}
h1 {
    color: white;
    font-size: 3.0em;
}
h2 {
    font-size: 2.0em;
}
h3 {
    color: #333;
    font-size: 1.5em;
}
#resultsText {
    min-height: 400px;
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
}
.radio-group input[type="radio"] {
    display: none;
    max-width: 25%;
}
.radio-group label {
    flex: 1 1 45%;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border: 1px solid #3b82f6;
    border-radius: 0.25rem;
    font-size: 1.0em;
    font-weight: 400;
    color: #1e49e2;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 2px 0 rgb(16 30 54 / 0.04);
    user-select: none;
}
.radio-group input[type="radio"]:checked + label {
    background: #aceaff;
    border-color: #1e49e2;
    box-shadow: 0 4px 16px 0 rgb(37 99 235 / 0.13);
}
.radio-group label:hover {
    border-color: #1e49e2;
    background: #e0e7ef;
}
.mailing-list, .backbutton {
    color: white;
    text-decoration: none;
}
@media (max-width: 640px) {
    .radio-group {
    flex-direction: column;
    gap: 0.5rem;
    }
    .radio-group label {
    min-width: unset;
    }
}
.footer-links a{
    color: #666 !important;
    text-decoration: none !important;
}
@media (max-width: 640px) {
    #taxChart {
        height: 420px !important;
        min-height: 420px !important;
    }
}
