* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.language-switch {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
}

.language-switch button {
    padding: 8px 14px;
    margin-left: 5px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.language-switch button:hover {
    opacity: 0.8;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .language-switch button {
        padding: 6px 10px;
        font-size: 12px;
    }
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}
