
* {
    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; 
    }
  }
  
  
.two-box-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: auto;
}

.two-box-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px; 
}

.photo-frame {
  position: relative;
  border-radius: 15px; 
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(200, 200, 200, 0.5) 100%);
}

.profile-image {
  width: 100%; 
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease; 
}

.profile-image:hover {
  transform: scale(1.05); 
}

.two-box-title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
}

.text-section {
  background-color: #f9f9f9; 
  border-radius: 10px; 
  padding: 20px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.two-box-text {
  font-size: 1em;
  line-height: 1.6em;
  color: #555;
  text-align: justify;
}

.two-box-text b {
  color: #007bff; 
}

@media (min-width: 600px) {
  .two-box-container {
      grid-template-columns: 1fr 1.5fr; 
      align-items: center; 
  }
}

@media (max-width: 599px) {
  .two-box-title {
      font-size: 1.5em; 
  }

  .two-box-text {
      font-size: 0.95em; 
  }

  .photo-frame {
      border-radius: 10px; 
  }

  .two-box-container {
      grid-template-columns: 1fr; 
  }
}