body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center align items vertically */
    background-color: #1E88E5;
    padding: 10px;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar .logo img {
    height: 50px;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher img {
    height: 10px; /* 50% of 20px */
    margin-left: 5px;
    cursor: pointer;
}

.language-switcher .divider {
    margin: 0 5px;
    color: white;
}

.centered-text {
    text-align: center;
}

.collapsible {
    background-color: #1E88E5;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
}

.active, .collapsible:hover {
    background-color: #555;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

.content p {
    margin: 10px 0;
}

/* Contact Page */
.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 10px;
}

/* Styling for the links */
.contact-item a {
    color: #1E88E5;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

/* Hover effect for links */
.contact-item a:hover {
    text-decoration: underline;
}

/* RequestQuote */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.btn {
    display: inline-block;
    background-color: #1E88E5;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #005cbf;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar a {
        float: none;
        width: 100%;
        text-align: left;
        padding: 10px;
        background-color: #1E88E5;
        color: white;
    }
    .container {
        width: 90%;
        margin: 20px auto;
    }
    .contact-item a {
        word-wrap: break-word;
    }
}

.footer-content {
    text-align: center;
    padding: 20px;
    background-color: #1E88E5; /* Adjust the background color to match your site's theme */
    color: white;
}

.footer-content img {
    max-width: 100%;
    height: auto;
    width: 300px; /* Adjust the width as necessary */
    display: inline-block;
    vertical-align: middle;
}

/* Ensure the footer sticks to the bottom of the page */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

footer {
    margin-top: auto;
}

/* Optional: Styling for text next to the image */
.footer-content .text {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 1.2em; /* Adjust the font size for better readability */
}
