* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #3a6ea5;
    padding: 20px;
}

nav ul {
    display: flex;
    list-style-type: none;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 50px;
    background-color: #e9eef5;
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.featured, .resources, .testimonials {
    padding: 40px 20px;
    text-align: center;
}

.featured h2, .resources h2, .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.articles {
    display: flex;
    justify-content: space-around;
}

article {
    width: 45%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.language-switcher {
    text-align: right;
    margin: 10px;
}

.language-switcher button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #3a6ea5;
    color: white;
    border: none;
    cursor: pointer;
}

.language-switcher button:hover {
    background-color: #2e5692;
}