footer {
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px;
}

.footer-container {
    padding: 50px;
    border-radius: 24px;
    background: #EDEDED;
}

.dark-theme .footer-container {
    padding: 50px;
    border-radius: 24px;
    background: #373737;
}

footer a {
    color: #000;
    /* Change to your desired color */
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    width: 163px;
    /* Adjust size as needed */
    margin-bottom: 30px;
}

footer p {
    margin: 5px 0;
    /* Adjust spacing for paragraphs */
}


/* Flexbox for horizontal alignment */
.footer-links,
.footer-contact,
.footer-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
}

/* Additional styles for responsiveness */
@media (max-width: 600px) {
    footer {
        padding: 10px;
    }

    footer a {
        display: block;
        margin: 5px 0;
    }

    .footer-links,
    .footer-contact,
    .footer-policy {
        flex-direction: column;
    }

    .social-icons {
        display: flex;
        flex-direction: row;
    }

    .footer-privacy-links {
        display: flex;
    }

    .footer-policy-links p {
        font-size: 12px !important;
    }

    .footer-policy p {
        font-size: 12px !important;
    }
}

.footer-logo {
    width: 163px;
    height: auto;
    margin-bottom: 30px;
}

.footer-logo-small {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

.footer-links {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0%;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact span {
    font-weight: 500;
}

.footer-contact p,
.footer-contact a {
    font-weight: 400;
}

.footer-policy {
    display: flex;
    justify-content: space-between;
}

.footer-policy p {
    font-weight: 400;
    font-size: 14px;
}

.social-icons a {
    margin: 5px !important;
}

.footer-privacy-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-privacy-links a {
    margin: 0 5px;
    /* Adjust spacing between links */
}

.footer-privacy-links p {
    margin: 0;
    white-space: nowrap;
    font-weight: 400;
}

.dark-theme .footer-links * {
    color: #fff;
}

.dark-theme .footer-contact * {
    color: #fff;
}

.dark-theme .footer-privacy-links * {
    color: #fff;
}