
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('360_F_604684885_OjzF0QmcvQ8NEtEvIij3ygn15VgApCNg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e8f1f5;
}

nav {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff9900;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  color: white;
  max-width: 800px;
}

.overlay h1 {
  font-size: 48px;
  color: #00ffff;
}

.overlay p {
  font-size: 20px;
  color: #ffcc80;
}

main {
  padding: 100px 20px 40px;
}

.intro, .services, .cta {
  background-color: rgba(0, 0, 0, 0.75);
  margin: 40px auto;
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.intro h2, .services h3, .cta h2 {
  color: #ff9900;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
  line-height: 1.6;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

button {
  background-color: #00cccc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #009999;
}

.static-footer {
  text-align: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #00ffff;
}
