footer {
    margin: 0 auto;
    bottom: 0;
    width: 100%;
    background-color: #252525;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Barlow', sans-serif;
    padding: 10px 0 10px 0;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 60%;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    width: 20% !important;
}

.footer-section h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #489fb5;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #489fb5;
}

.fpodaci{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 14px;
}

a{
    text-decoration: none;
    color: white;
}

@media (max-width: 600px) {
    .footer{
        width: 90%;
        margin: 0 auto;
        padding: 0 !important;
    }

    .footer-container {
        flex-direction: column;
        gap: 0px;
        max-width: none;
        width: 90%;
        margin: 0 auto;
    }

    .footer-section {
        flex: 1;
        width: 100% !important;
    }

    .footer-section ul{
        margin: 0;
    }
}