body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: rgb(167, 168, 168);
  color: #333;
  max-width: 100%;
  overflow-x: hidden;
}

nav {
  background-color: #222831;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navlinks {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navlinks li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: 0.3s;
}

.navlinks li a.active,
.navlinks li a:hover {
  background-color: #ffb0b0;
  border-radius: 5px;
}

.contact-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #222831;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffb0b0;
  color: #000;
}

.socials {
  margin-top: 2rem;
}

.socials a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: #222;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #ffb0b0;
}
