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

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

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    background-color: #C04000; /* Darker orange for better contrast */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, outline 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
    background-color: #A84300;
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

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

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

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

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

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

/* Main content container */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

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

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

/* Buttons/links in blocks */
.block a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color: #C04000;
    border-radius: 5px;
    transition: background-color 0.3s, outline 0.2s ease-in-out;
}

.block a:hover,
.block a:focus {
    background-color: #A84300;
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

/* Plain text links */
.block a.plain-link {
    background: none;
    color: #0057B7;
    padding: 0;
    margin: 10px 0;
    border-radius: 0;
    display: block;
    text-decoration: underline;
}

.block a.plain-link:hover,
.block a.plain-link:focus {
    color: #003F8A;
    outline: 2px solid #003F8A;
    outline-offset: 2px;
}

/* Footer styles */
.footer {
    text-align: center;
    background-color: #f4f4f4;
    padding: 30px 0;
    margin-top: auto;
}

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

.footer a:hover,
.footer a:focus {
    text-decoration: underline;
    color: #A84300;
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

/* Responsive layout for small screens */
@media (max-width: 600px) {
    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .block {
        width: 100%;
        max-width: 90%;
    }
}

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

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

.logo-row {
    width: 100%;
    text-align: center;
    margin: 30px 0;
}

.logo-row img {
    width: 400px;
    height: auto;
}