body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

.lang-selector {
    position: fixed;
    top: 1em;
    right: 1em;
    z-index: 1000;
}

.lang-selector button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 0.5em 1em;
    cursor: pointer;
    margin-left: 0.5em;
    border-radius: 5px;
    color: #333; /* Ensure readable text */
    opacity: 1; /* Override any unwanted opacity */
}

.lang-selector button.active {
    background: #003087;
    color: white;
    border-color: #003087;
}

.contact-button {
    position: fixed;
    top: 1em;
    left: 1em;
    z-index: 1000;
}

.contact-button button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 5px;
    color: #333; /* Ensure readable text */
    opacity: 1; /* Override any unwanted opacity */
}

.contact-button button:hover {
    background: #003087;
    color: white;
    border-color: #003087;
}

header {
    background: linear-gradient(to bottom, #0052cc, #003087);
    color: white;
    text-align: center;
    padding: 4em 1em;
}

.hero-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 1em;
}

.hero-content h1 {
    font-size: 2.5em;
    margin: 0.5em 0;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 1em;
}

section {
    padding: 2em 1em;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    color: #003087;
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

ul {
    list-style: disc;
    padding-left: 1.5em;
}

#feedwind-placeholder {
    min-height: 100px;
    background: #f9f9f9;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    section {
        padding: 1em;
    }
    .lang-selector {
        top: 0.5em;
        right: 0.5em;
    }
    .lang-selector button {
        padding: 0.3em 0.8em;
        font-size: 0.9em;
    }
    .contact-button {
        top: 0.5em;
        left: 0.5em;
    }
    .contact-button button {
        padding: 0.3em 0.8em;
        font-size: 0.9em;
    }
}
