html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    flex: 1;
}

header {
    background: #35424a;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    width: 232px;
    height: 128px;
    margin: 0em 2em 0em 5em;
    object-fit: cover;
}

.header-text {
    flex-grow: 1;
}

.header-text h1 {
    text-transform: uppercase;
    margin: 0;
    font-size: 2.5em;
    color: #ffffff;
}

.header-text p {
    font-size: 1.2em;
    margin: 5px 0 0 0;
    color: #ffffff;
}

.language-toggle a {
    color: #ffffff;
    margin: 0 5px;
    text-decoration: none;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6em;
    padding: 6em;
    text-align: center;
}

.grid-item {
    background: #f4f4f4;
    padding: 20px;
    border: 0px solid #cccccc;
    border-radius: 10px; /* Rounded corners */
}

.grid-item h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.grid-item p, .grid-item ul {
    font-size: 1.1em;
    line-height: 1.6;
}

.grid-item ul {
    list-style: none;
    padding: 0;
}

.grid-item ul li {
    margin-bottom: 10px;
}

a {
    color: #e8491d;
    text-decoration: none;
}

footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    border-top: #e8491d 3px solid;
    margin-top: auto;
}

footer p {
    margin: 0;
}
