* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: grid;
    grid-template-areas:
        "header header"
        "nav main"
        "footer footer";
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 250px 1fr;
}

header {
    grid-area: header;
    background: linear-gradient(135deg, #e7e1dd 0%, #e7e1dd 100%);
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    justify-content: center;
    align-content: center;
    height: 291px;
    max-height: 291px;
    min-width: 1800px;
    width: 100%;
}

nav {
    grid-area: nav;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-right: 1px solid #dee2e6;
}

#main-content {
    grid-area: main;
    padding: 2rem;
    background-color: #ffffff;
}

footer {
    grid-area: footer;
    background-color: #343a40;
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    margin-top: 1rem;
}

.nav-list li {
    margin-bottom: 0.75rem;
}

.nav-list a {
    color: #495057;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-list a:hover {
    background-color: #e9ecef;
    color: #1e3c72;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    width: 1500px;
    margin-bottom: 25px;
}
.card p{
    font-size: 12pt;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 10px;
}

.card h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    body {
        grid-template-areas:
            "header"
            "nav"
            "main"
            "footer";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
    }

    nav {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
}