.sehatbaaz_footer {
    padding: 2rem 0 1rem;
}

.footer_links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;

}

.footer_links li a {
    color: #18181B;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    font-family: "Roboto";
}

.footer_links li a:hover {
    text-decoration: underline;
}

.social_icons_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.social_icons_wrap a {
    color: #27272A;
    text-decoration: none;
    font-size: 1rem;
}

.sehatbaaz_footer hr {
    background: #FAFAFA;
}

.privacy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.privacy-links li a {
    font-size: 0.885rem;
    color: #52525B;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.sehatbaaz_footer p {
    font-size: 0.875rem;
    font-weight: 400;
    color: #52525B;
    margin: 0;
}

@media(max-width:767px) {
    .sehatbaaz_footer{
        text-align: center;
    }
    .logo_wrap {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer_links {
        flex-direction: column;
    }

    .social_icons_wrap {
        justify-content: center;
        margin-top: 2rem;
    }

    .privacy-links {
        justify-content: center;
        margin-top: 1rem;
    }
}