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

/* Base styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header and Navigation */
@keyframes rainbow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  background-size: 400% 400%;
  animation: rainbow 8s ease infinite;
  color: #fff;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
nav .logo h1 {
  font-size: 1.8em;
}
nav .nav-links {
  list-style: none;
  display: flex;
}
nav .nav-links li {
  margin-left: 20px;
}
nav .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

/* Hero Section */
#hero {
  background: url("/background.jpg") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
#hero .hero-content h2 {
  font-size: 2.5em;
}
#hero .hero-content p {
  font-size: 1.2em;
  margin: 20px 0;
}
#hero .btn {
  display: inline-block;
  background: #ffa500;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Container for sections */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
section {
  padding: 40px 0;
}

/* Services Section */
#services .service-item {
  margin-bottom: 20px;
}

/* Contact Form Styles */
form label {
  display: block;
  margin-bottom: 5px;
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background: #006400;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}
form button:hover {
  background: #004d00;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
