body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('/pictures/AlpenRenovBackground.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background in place while scrolling */
    color: #333;
}
header {
    background-color: #1e1e1e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
nav {
    margin-top: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
}
#header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#site-logo {
    width: 50px;  /* Adjust size as needed */
    height: auto;
    border-radius: 10px;  /* Optional: Makes edges slightly rounded */
}

#page-title {
    margin: 0;
    font-size: 2.5rem;
}
#language-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#language-container img {
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

#language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}
section {
    padding: 50px;
    text-align: center;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
}
.service {
    background-color: #fff;
    padding: 20px;
    width: 320px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 8px;
}
.toto {
    background-color: #fff;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 8px;
}
.service h3 {
    color: #1e1e1e;
    font-size: 1.5rem;
}



footer {
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 0;
}
