
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e0e;
  color: #f0f0f0;
}
header {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  color: #00d6d6;
  text-decoration: none;
  padding: 8px 12px;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #222;
  min-width: 150px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content li a {
  display: block;
  padding: 10px;
}
.hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
}
.hero-text h1 {
  font-size: 48px;
  margin: 0;
}
.hero-text p {
  font-size: 20px;
  margin-top: 10px;
}
.news {
  padding: 40px 20px;
}
.news h2 {
  color: #00ffff;
}
#contact {
  padding: 40px 20px;
  background: #1a1a1a;
}
form input, form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin: 10px 0;
  background: #222;
  border: 1px solid #444;
  color: white;
}
form button {
  padding: 10px 30px;
  background: #00ffff;
  border: none;
  color: #000;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  font-size: 14px;
}
