section {
  color: white !important;
  font-weight: bold !important;
}

section#contact-section {
  background-color: white !important;
  color: black !important;
  font-weight: bold !important;
  padding: 1rem;
  border-radius: 8px;
}

section#contact-section h2,
section#contact-section h3,
section#contact-section p,
section#contact-section label,
section#contact-section input,
section#contact-section textarea {
  color: black !important;
  font-weight: bold !important;
}

body {
  background-color: #121212;
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header, footer {
  text-align: center;
  background-color: #1a1a1a;
  padding: 10px 0;
  color: white;
  font-weight: bold;
}

footer small {
  color: #ccc;
  font-weight: bold;
}

nav {
  background-color: #333;
  color: white;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 10px 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff6f61;
}

.logo {
  max-width: 120px;
  height: auto;
}

form {
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin: auto;
  padding: 1rem;
  box-sizing: border-box;
}

form input,
form textarea,
form button {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

form button[type="submit"] {
  background-color: transparent;
  border: 2px solid #007BFF;
  color: #007BFF;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #007BFF;
  color: white;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
  }

  nav li {
    margin: 5px 0;
  }

  .logo {
    max-width: 100px;
  }

  form {
    padding: 1rem 1rem;
  }

  section,
  footer,
  header {
    padding: 1rem;
    text-align: center;
  }
}
