* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('logo.png') no-repeat center center fixed;
    background-size: cover;
}

.top {
    background-color: rgba(3, 24, 90, 0.8); /* Semi-transparent background */
    color: white;
    padding: 20px;
    text-align: center;
}

.middle {
    background-color: rgba(241, 241, 241, 0.8); /* Semi-transparent background */
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.column {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
}

.column h2, .column h3, .column p, .column ul {
    margin-bottom: 20px;
}

.column ul {
    list-style-type: none;
    padding-left: 0;
}

#language-toggle {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
}

#language-toggle:hover {
    background-color: #45a049;
}

.bottom {
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    padding: 10px;
    text-align: center;
}
