body {
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    font-size: 12pt;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-top {
    background-color: #003300;
    color: #ffffff;
    font-size: 0.875rem;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0;
}

.header-top .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left .vermont-logo__text {
    font-weight: 300;
}

.header-top-left .vermont-logo__text span {
    font-weight: 500;
}

.header-top-right .state-logo-top-right img {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.content-wrapper {
    padding: 20px;
    max-width: 960px;
    margin: 40px auto;
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans 3", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    color: #003300;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h1 {
    font-size: 2.5em;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    text-align: left;
}

.pre-title {
    font-size: 1em;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0.1em;
    text-align: left;
}

.subtitle {
    font-size: 1.5em;
    font-weight: 300;
    text-align: left;
    margin: 0 0 1.5em 0;
    color: #555555;
}

p {
    margin-bottom: 1em;
}

a {
    color: #174a7c;
    text-decoration: underline;
}

a:hover, a:focus {
    color: #007834;
    text-decoration: none;
}

.btn {
    display: inline-block;
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #07648d;
    border: 1px solid #07648d;
    padding: 0.7em 1.4em;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    vertical-align: middle;
    line-height: 1.4;
    margin-top: auto;
}

.btn:hover,
.btn:focus {
    background-color: #054f73;
    border-color: #054f73;
    color: #ffffff;
    text-decoration: none;
    outline: 2px solid #007834;
    outline-offset: 2px;
}

.btn.btn-green {
    background-color: #007834;
    border-color: #007834;
}

.btn.btn-green:hover,
.btn.btn-green:focus {
    background-color: #005a28;
    border-color: #005a28;
}

.card-layout {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #ffffff;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: "Source Sans 3", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #003300;
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-title a:hover,
.card-title a:focus {
    text-decoration: underline;
    color: #007834;
}

.card-text {
    flex-grow: 1;
    font-size: 1em;
    color: #333333;
    margin-bottom: 20px;
}

.footer {
    background-color: #003300;
    color: #ffffff;
    font-size: 0.875rem;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    .subtitle { font-size: 1.2em; }
    .card-layout {
        grid-template-columns: 1fr;
    }
    .header-top-content {
        flex-direction: column;
        gap: 5px;
    }
    .header-top, .footer {
        height: auto;
        padding: 8px 0;
    }
}