
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f4f8;
    color: #333;
  }
  

        
  .header {
    position: block;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #1976D2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
  }
  
  #menu-icon {
    font-size: 36px;
    color: #fff;
    cursor: pointer;
  }
  
  .navbar {
    margin-top: 68px;
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    flex-direction: column;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .meniu-li {
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 1px;
    margin: 10px 0;
  }
  
  .navbar.active {
    display: flex;
  }
  
  .navbar a {
    color: #000;
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .navbar a:hover {
    background: #f0f0f0;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: black;
    cursor: pointer;
    align-self: flex-end;
    margin: 10px;
  }
  
  .content {
    padding: 80px 20px; 
  }
  
  @media (max-width: 768px) {
    .header {
        padding: 10px;
    }
  
    #menu-icon {
        display: block;
    }
  
    .navbar {
        width: 60%;
    }
  }
  
  .titlu-navigatie{
      text-align: center;
      color: #1976D2;
  }   
 
  .site-footer {
    background-color: #1976D2;
    color: #fff;
    padding: 40px 20px;
    font-size: 0.9em; 
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap; 
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-around; 
    align-items: flex-start; 
    margin-bottom: 20px;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    
    margin-bottom: 0px;
  }
  
  .footer-logo {
    width: 150px; 
    margin-bottom: 15px;
    display: block; 
  }
  
  .footer-description {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .social-links a {
    color: #ffffff;
    font-size: 1.3em; 
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #000000; 
  }
  
  .footer-center h4,
  .footer-right h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #000000; 
  }
  
  .footer-right p {
    margin-bottom: 8px;
  }
  
  .footer-right a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-right a:hover {
    color: #000000; 
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
  }
  
  .footer-bottom p {
    margin-bottom: 5px;
  }
  
  .footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #000000; 
  }
  
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;  
        align-items: center;   
    }
  
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;  
    }
    .social-links {
        justify-content: center;
    }
  }
  
 
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column; 
        text-align: center; 
    }
    .footer-section {
        margin-bottom: 30px;
    }
    .social-links {
        justify-content: center; 
    }
  }
  .box-section {
    padding: 2rem 1rem;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.box-section {
    padding: 2rem 1rem;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 300px; 
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.box-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 1rem;
}

.box-description {
    font-size: 0.95rem;
    color: #333;
}


@media (max-width: 768px) {
    .container {
        justify-content: center;
    }
    .box {
        max-width: 90%; 
    }
}
