.footer-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0 20px;
    width: 100%;
  }
  .nav-group{
    width: 120px;
    display: flex;
    flex-direction: column;

  }
  .logo-footer{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-footer .logo img{
    width: 70px;
    height: auto;
  }

  /* naslov sekcije */
  .footer-widget h3 {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 700; /* bold */
    color: #ffffff !important; 
  }

  /* lista linkova */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 6px; /* manji razmak između stavki */
  }

  /* linkovi u listi */
  .footer-links > li > a {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400 !important; /* normalno, ne bold */
    display: inline-block;
  }

  .footer-links > li > a:hover {
    color: #cccccc !important;
  }
  .footer-social{
    display: flex;
    justify-content: center;
    gap: 20px;

  }
  .footer-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .footer-signature{
    width: 100%;
    text-align: center;
  }
  .footer-signature p{
    color: #fff;
    margin: 40px 0 0;
  }

  @media(max-width: 600px){
    .footer-widget{
      flex-direction: column;
      gap: 40px;
    }
  }