body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Background color of the page */
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left-side, .right-side {
    flex: 1;
    padding: 20px;
}

.right-side img.breezebot-image {
    width: 100%;
    height: auto;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: #f5f5f5; /* Same as page background */
}

.language-switcher button {
    background-color: #f5f5f5; /* Same as page background */
    color: #007BFF; /* Text color for the buttons */
    border: 2px solid #f5f5f5; /* Border color same as page background */
    padding: 10px;
    margin: 0 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

.language-switcher button img {
    max-width: 24px; /* Adjust the max-width */
    max-height: 24px; /* Adjust the max-height */
    margin-right: 5px;
}

.language-switcher button:hover {
    background-color: #e0e0e0; /* Slightly darker background on hover */
}

.product-section {
    padding: 20px;
    background-color: #FFF;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 20px;
    background-color: #FFF;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background-color: #007BFF;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #0056b3;
}
