body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    background: #fff;
    padding: 0;
    margin-bottom: 150px;
    margin-top: 150px
}

.logo {
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

main {
    padding: 0;
    flex: 1;
}

.link-list {
    text-align: left;
    max-width: 400px;
    /*margin: 0 auto;*/
	margin-left: 7%;
}

.link-list h2 {
    margin: 50px 0;
    padding: 0;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.link-list a {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.link-list a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    margin-bottom: 100px;
    background: #fff;
    color: #333;
    margin-top: auto;
}

footer a {
    color: #aaa;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

footer a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #ccc;
    text-decoration: underline;
}

.cookie-banner button {
    background: #000;
    color: white;
    border: solid 2px;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    border-radius: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.cookie-banner button:hover {
    background: #fff;
    color: #000;
    border: solid 2px;
    border-color: #fff;
}

@media (max-width: 600px) {
    .logo {
        max-width: 350px;
    }
    .link-list {
        max-width: 90%;
    }
header {
    margin-bottom: 0px;
}
