body, html {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}

.image-container {
    position: relative;
    max-width: 50%;
    margin: auto;
    padding-top: 6px;
    display: flex;
    justify-content: center; /* Centers children horizontally */
    align-items: center; /* Centers children vertically */
    width: 100%; /* Adjust as necessary */
    height: auto; /* Adjust based on content or fixed height if desired */
}

.image-container img {
    display: block;
    max-width: 60%;
    height: auto;
    margin: auto; /* Centers the image horizontally */
}

@media (max-width: 1024px) {
    .image-container {
        max-width: 70%;
    }
    .footer-info p {
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .image-container {
        max-width: 80%;
    }

    .company-info p, .footer-info p {
        font-size: 10px;
    }
}

.company_logo {
    height: 25vh;
    margin-top: 21px;
    max-width: 66%;
    display: block;
    margin: auto; /* Center the logo horizontally */
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.344148-button, .language-switcher {
    background-color: #344148;
    color: white;
    padding: 12px 12px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 12px;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.344148-button:hover, .344148-button:active,
.language-switcher:hover, .language-switcher:active {
    background-color: darkred;
}

.language-switch-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.language-switcher {
    background-color: white;
    color: #344148;
}

.company-info {
    text-align: center;
    margin-top: 20px;
}

.footer-info {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 15px;
    color: gray;
}

.company-info h1, .company-info p {
    margin: 5px 0;
    color: gray;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}
