
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f4f8;
  color: #333;
}


.container {
  max-width: 800px; 
  margin: 0 auto;
  padding: 20px; 
}

.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: #1976D2; 
}

.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; 
  }
}

h1 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: vertical;
  height: 150px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #5c67f2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #4f54db;
}

.contact-info {
  margin-top: 25px;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 10px;
}