body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #101624;
    margin: 0;
    overflow-x: hidden;
}

.logo {
    background: #101624;
    position: relative;
    z-index: 1;
}

.logo img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 55%;
    display: block;
    margin: 0 auto;
}

header {
    background-color: #101624;
    border-radius: 0px 0px 20px 20px;
    border: 5px solid #E08335;
    box-shadow: 0px 12px 30px #d66101;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.parts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.sep1, .sep2 {
    height: 40px;
    width: 0px;
    border: 2px solid #E08335;
    border-radius: 20px;
}

a {
    text-decoration: none;
    color: #E08335;
}

.a1, .a2, .a3 {
    font-size: 30px;
    transition: transform 0.3s ease;
}

.a1:hover, .a2:hover, .a3:hover {
    transform: scale(1.2);
    text-shadow: 0 0 5px #6e3200;
}

#langSwitch {
    padding: 10px 15px;
    border: 2px solid #E08335;
    background-color: #E08335;
    border-radius: 8px;
    color: #101624;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#langSwitch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #d66101;
}

.deliv {
    color: #E08335;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 30px;
}


.delivery {
    color: #d66101;
    font-size: 20px;
}


.main {
    background: #101624;
    color: #d66101;
    padding: 40px 5%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -15px 30px #d66101;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.logo2 {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.infoa, .infoc {
    font-size: 18px;
    color: #E08335;
    line-height: 1.5;
}

.icons {
    display: flex;
    gap: 15px;
}

.icons img {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .logo img {
        width: 80%;
        height: auto;
        max-height: 150px;
    }

    header {
        padding: 15px 10px;
    }

    .parts {
        flex-direction: column;
        gap: 15px;
    }

    .sep1, .sep2 {
        display: none;
    }

    .a1, .a2, .a3 {
        font-size: 22px;
    }

    #langSwitch {
        font-size: 18px;
        padding: 8px 12px;
    }

    .deliv {
        margin: 20px 10px;
    }

    .fwb, .glovo {
        font-size: 24px;
    }

    .main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-section {
        align-items: center;
        width: 100%;
    }

    .logo2 {
        width: 180px;
    }

    h2 {
        font-size: 24px;
    }

    .infoa, .infoc {
        font-size: 16px;
    }

    .icons img {
        width: 40px;
        height: 40px;
    }
}