body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
header {
    background: #005b3c;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.logo {
    height: 60px;
    margin-bottom: 10px;
}
nav {
    background: #333;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 14px 0;
    display: block;
}
main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: white;
}
section {
    margin-bottom: 40px;
}
footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
}
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}
.product-gallery div {
    width: 200px;
    text-align: center;
}
.product-gallery img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
}
#toggle-lang {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
