/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

nav {
    background-color: #f8f9fa;
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

header {
    text-align: center;
    padding: 50px 20px;
    background-color: #74ACDF;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    color: #000000;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

section p {
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 5px;
    background-color: #74ACDF;
    position: static;
    width: 100%;
    bottom: 0;
}

.language-toggle-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.language-toggle-button:hover {
    transform: scale(1.3); /* Slightly enlarge on hover */
}

.flag-icon {
    height: 24px;              /* Set height */
    width: 36px;               /* Set width to 1.5 times the height */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional shadow */
}
