body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f8ff; /* Light background color */
  color: #333;
  /* Add a modern, tech-themed background gradient */
  background: linear-gradient(to bottom, #e6f7ff, #ccefff);
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  animation: moveBackground 15s linear infinite;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  background-color: rgba(30, 144, 255, 0.9); /* Dodger Blue with transparency */
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

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

nav li {
  margin: 0 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

nav a:hover {
  color: #ffd700; /* Gold on hover */
}

.hero {
  background-color: rgba(255, 255, 255, 0.8); /* White with transparency */
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Deeper shadow */
  margin: 20px;
}

.hero h2 {
  margin-bottom: 15px;
  color: #1e90ff; /* Dodger Blue */
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
  color: #555;
}

#search-form {
  margin-top: 30px;
}

#search-form input[type="text"] {
  padding: 12px;
  width: 70%;
  border: 2px solid #1e90ff; /* Dodger Blue border */
  border-radius: 5px;
  font-size: 1em;
}

#search-form button {
  padding: 12px 20px;
  background-color: #1e90ff; /* Dodger Blue */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

#search-form button:hover {
  background-color: #0077cc; /* Darker shade on hover */
}

.faq {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 20px;
}

.faq h2 {
  color: #1e90ff; /* Dodger Blue */
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #eee;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.4em;
}

.faq-item p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.6;
}

.contact {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 20px;
}

.contact h2 {
  color: #1e90ff; /* Dodger Blue */
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

#contact-form label {
  display: block;
  margin-top: 15px;
  color: #333;
  font-weight: 500;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

#contact-form button {
  padding: 12px 20px;
  background-color: #1e90ff; /* Dodger Blue */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #0077cc; /* Darker shade on hover */
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(30, 144, 255, 0.9); /* Dodger Blue with transparency */
  color: #fff;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}