/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #2d2d2d;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    background-color: #4CAF50;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.about, .services, .products, .sales, .contact {
    padding: 40px;
    text-align: center;
}

.service-list, .product-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item, .product-category {
    width: 30%;
    margin-bottom: 20px;
}

footer {
    background-color: #2d2d2d;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.language-switcher {
    text-align: right;
    margin-bottom: 10px;
}
