body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
}
header {
    background: #0b3c5d;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
}
.language-selector img {
    margin: 0 5px;
    cursor: pointer;
}
.hero {
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 36px;
}
.hero p {
    font-size: 18px;
}
.button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
}
.about, .contact {
    padding: 50px 20px;
    background: white;
    margin-top: 30px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #0b3c5d;
    color: white;
    margin-top: 30px;
}
input, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
}
button {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
}
