/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Logo */
.logo-header {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.logo {
  width: 120px;
  height: auto;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  background-color: #0077cc;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffdd57;
}

/* Page Title */
.page-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 30px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin: 40px auto;
  }

.hero-image {
  width: 80%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #555;
}

/* Footer */
footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}