footer {
        position: relative;
        padding: 20px;
        background: #f1f1f1;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-links a {
        margin: 0 10px;
        text-decoration: none;
        color: #000;
    }

    .dropup {
        position: relative;
        display: inline-block;
    }

    .dropup-content:hover {
        -webkit-box-shadow: 0px 1px 6px 0px #cccccc;
        box-shadow: 0px 1px 6px 0px #cccccc;
    }

    .dropup-btn {
        background-color: #f1f1f1;
        color: black;
        border-radius: calc(34px / 2);
        padding: 10px;
        font-size: 12px;
        border: none;
        cursor: pointer;
    }
    @media only screen and (max-width: 768px) {
        .dropup-btn {
            font-size: 13px;
        }
    }
    .country-option {
        list-style-type: none;
        padding: 8px 0px;
    }
    .country-option:hover {
        background-color: #f2f2f2;
    }
    .language-option {
        background-color: white;
    }
    @media only screen and (max-width: 768px) {
        .language-option {
            padding: 10px;
        }
    }
    .language-option:hover {
        background-color: #f2f2f2;
    }
    .dropup-content {
        display: none;
        position: absolute;
        bottom: 50px;
        background-color: white;
        color:black;
        min-width: 160px;
        border-radius: calc(34px / 2);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 1;

        padding: 8px 0px;
        cursor: pointer;
    }
    @media only screen and (max-width: 768px) {
        .dropup-content {
            font-size: 14px;
            min-width: 160px;
        }
    }

    .dropup-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropup-content a:hover {
        background-color: #f1f1f1;
    }

    .show {
        display: block;
    }
