/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #ff4500;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

nav a:hover {
  color: #ffa500;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #999;
}

footer .socials a {
  color: #ff4500;
  margin: 0 10px;
  text-decoration: none;
}

footer .socials a:hover {
  color: #ffa500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-size: 1em;
}

.contact-form button {
  background-color: #ff0000;
  color: #fff;
  cursor: pointer;
}

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