* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2237;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    background-color: #fbed82;
}

.footer div {
    width: 30%;
}

.footer h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 8px 0;
}

a {
    text-decoration: none;
    color: #2c2237;
}

a:hover {
    text-decoration: underline;
}

.social-media img, .languages img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.social-media li, .languages li {
    display: flex;
    align-items: center;
}

.footer-note {
    text-align: center;
    font-size: 14px;
    color: #2c2237;
    margin-top: 20px;
}

.note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    background-color: #ffe4e1;
    padding: 10px;
}

   /* Responsive Design */

        /* For tablets */
        @media (max-width: 768px) {
            .footer {
                flex-direction: column; /* Stack items vertically */
                align-items: flex-start; /* Align content to the left */
                padding: 20px;
            }

            .footer div {
                width: 100%;
                margin-bottom: 20px;
                text-align: left;
            }

            .footer div:last-child {
                margin-bottom: 0;
            }
        }

        /* For mobile devices */
        @media (max-width: 480px) {
            .footer {
                padding: 15px;
                flex-direction: column;
                align-items: flex-start; /* Align content to the left */
            }

            .footer div {
                width: 100%;
                margin-bottom: 15px;
                text-align: left; /* Align text to the left */
            }

            .footer h4 {
                text-align: left; /* Ensure section headers align left */
            }

            .footer div:last-child {
                margin-bottom: 0;
            }
        }

        /* For larger screens (PC) */
        @media (min-width: 769px) {
            .footer {
                flex-direction: row;
            }
        }