body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    background-color: #f4f6fb;
    color: #222;
}


nav {
    background: #1e3a8a;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    margin-right: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

.language-switch {
    display: flex;
    justify-content: flex-end; 
    margin: 15px 30px 0 0; 
    gap: 10px;
}

.language-switch button {
    background-color: #ffffff; 
    color: #1e3a8a; 
    border: 2px solid #1e3a8a;
    border-radius: 6px;
    padding: 5px 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 50px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    color: #1e3a8a;
    margin-bottom: 20px;
}

h2 {
    margin-top: 40px;
    color: #333;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
}

form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}



footer {
    text-align: center;
    padding: 15px;
    background-color: #1e3c72;
    color: white;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
}