body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #181818;
  color: #f4f4f4;
}

header {
  background: linear-gradient(to right, #1e5799, #2989d8, #207cca, #7db9e8);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5vh;
}

nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 10px;
}

nav ul li {
  display: inline;
  margin-right: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 5px;
}

.contact-section {
  padding: 10vh 20px 20px 20px;
  max-width: 800px;
  margin: 20px auto;
  background-color: #2e2e2e;
  color: #f4f4f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.contact-section p {
  text-align: center;
  margin-bottom: 20px;
  color: #ccc;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #444;
  color: #f4f4f4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: #555;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #2989d8;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #207cca;
}

footer {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vh;
  bottom: 0;
}
