header nav {
    right: 1px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

header nav .nav-left,
header nav .nav-right {
    display: flex;
    align-items: center;
    font-family: Roboto, Helvetica, Arial;
    font-size: 16px;
    font-weight: bold;
}

header nav .nav-left{
    margin-left: 15px;
}

header nav .nav-left a,
header nav .nav-right a {
    color: #42372D;
    padding: 5px 20px;
    margin: 0 5px;
    text-decoration: none;
}

header nav .nav-right .translate-button {
    display: flex;
    align-items: center;
    margin: 0px 25px;
}

header nav .nav-right .translate-button a {
    border: 0px solid #fff;
    border-radius: 50px;
    padding: 5px 20px;
    color: #F8F8F8;
    font-family: Roboto, Helvetica, Arial;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

/* Footer Section */
footer {
    border-top: 1px solid #000000;
    background-color: #F8F8F8;
    color: #42372D;
    padding: 40px 200px;
    font-family: Roboto, Helvetica, Arial;
    margin: 0px -7px;
}

/* Row Container */
footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    padding: 0 20px;
}

/* Contact Section */
footer .contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer .contact .logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

footer .contact .social-icons {
    display: flex;
    gap: 16px; /* Space between icons */
    margin-top: 10px;
}

footer .contact .logo img{
    margin-left: 20px;
}

footer .contact .social-icons a img {
    width: 24px; /* Adjust size of icons if needed */
    height: 24px;
}

/* Content, Customer, Info, and Get-App Sections */
footer .content,
footer .customer,
footer .info,
footer .get-app {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 18px;
}

footer .contact-title,
footer .content-title,
footer .customer-title,
footer .info-title,
footer .get-app-title {
    margin-right: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

footer .content a,
footer .customer a,
footer .info a {
    margin-top: 10px;
    color: #42372D;
    text-decoration: none;
    transition: color 0.3s;
}

footer .content a:hover,
footer .customer a:hover,
footer .info a:hover {
    color: #ddd;
}

/* Get App Section */
footer .get-app a img {
    max-width: 120px;
    margin-top: 10px;
    margin-left: -5px;
}


/* Bottom Section */
footer .bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 11px;
    color: #42372D;
    border-top: 1px solid #42372D; /* Add a top border to the bottom section */
    padding-top: 20px; /* Add some padding to the top of the bottom section */
    margin: 5px -80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
        align-items: center;
    }

    footer .content,
    footer .customer,
    footer .info,
    footer .get-app {
        align-items: center;
        margin-top: 30px;
    }
}
