body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Navigation links styling */
.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: white;
    background-color: #4CAF50;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #45a049;
}

/* Language switcher styling */
.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher select {
    margin-left: 10px;
    padding: 5px;
    font-size: 14px;
}

/* Banner styles */
.banner {
    text-align: center;
    margin-bottom: 20px;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
}

/* Header styles */
.header {
    text-align: center;
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
}

/* Block styles */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1; /* This makes the container take up available space */
}

.header-about {
    text-align: center;
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
}

/* Block styles */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1; /* This makes the container take up available space */
}


.block {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

.block ul {
    text-align: left;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.block ul li {
    margin-bottom: 8px; 
    line-height: 1.5;  
}


/* Block image styles */
.block-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.block a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color: #4CAF50;
    border-radius: 5px;
}

.block a:hover {
    background-color: #45a049;
}

/* Footer for accessibility statements */
.footer {
    text-align: center;
    background-color: #f4f4f4;
    padding: 30px 0;
    margin-top: auto; /* Pushes the footer to the bottom */
    background-color: #f4f4f4;
}

.footer a {
    margin: 0 30px;
    color: #4CAF50;
    text-decoration: none;
}

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

.block a.plain-link {
    background: none;
    color: #0066cc;
    padding: 0;
    margin: 10px 0;
    border-radius: 0;
    display: block;
    text-decoration: underline;
}
.block a.plain-link:hover {
    color: #004999;
}