.navbar {
  padding: 20px;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  margin-top: 5px;
  margin-bottom: 0px;
  overflow: hidden;
  background-color: #2E3047; 
}
.nb {
  border: 2px solid white;
  padding: 10px 20px;
  margin-left: 10px;
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: "Georgia", Garamond, serif;
  background-color: #3BBA9C;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.nb:last-child {
  border-right: none;
}
.nb:hover {
  background-color: #6D6968;
}
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-container h1 {
  margin-bottom: 20px;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

.social-links {
  margin-top: 30px;
  text-align: center;
}

.social-links a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

