body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background: #0f2c57;
    color: #333;
}

.container {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    position: absolute;
}



.nav-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 35px;
    background: #fff;
    /*top: 0;*/
    /*width: 100%;*/
    /*height: 100px;*/
    /*max-height: 150px;*/
}

.nav-top img {
    width: 200%;
    max-width: 220px;
    cursor: pointer;
}

header {
    background: #f7f7f7;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #003680;
}

.card p {
    font-size: 16px;
    flex-grow: 1;
}

.card a {
    text-align: center;
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #003680;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.card a:hover {
    background-color: #001c43;
}

footer {
    background: #fff;
    color: #222;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}