body {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  background-color: #000;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.nav-link:hover {
   background-color: white;
    color:black;
}

.nav-link.active {
  border: 2px solid white;
}

.logo img {
  width: 160px;
  height: auto;
}

.contact-section {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h1 {
  margin-bottom: 40px;
  font-size: 32px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact-form button {
  width: 25%;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
    margin-right: -4%;
}

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