body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f7fb;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.site-header {
    background: #0b3c78;
    color: white;
    text-align: center;
    padding: 25px 10px;
}

.site-nav {
    background: #f4c430;
    text-align: center;
    padding: 12px;
}

.site-nav a {
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

.site-nav a.active {
    text-decoration: underline;
}

.hero {
    background: #0b3c78;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: auto;
}

.card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.site-footer {
    background: #0b3c78;
    color: white;
    text-align: center;
    padding: 15px;
}

.button {
    display: inline-block;
    background: #f4c430;
    color: #111;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 8px 5px 0;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-logo {
    max-width: 110px;
    height: auto;
}

.card small {
    display: block;
    margin-top: 8px;
    font-weight: normal;
    color: #555;
.card .button {
    display: block;
    width: auto;
    max-width: 220px;
    margin: 10px auto 0;
    text-align: center;
}

.card h3 {
    margin-top: 0;
}

.cards {
    align-items: stretch;
}

.card {
    box-sizing: border-box;
}
.card p {
    margin: 6px 0;
}