/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: #004466;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo h1 {
  font-size: 1.5rem;
}

header .slogan {
  font-size: 0.9rem;
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('har.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero .maintenance {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffcc00;
}

/* Footer */
footer {
  background: #f4f4f4;
  text-align: right;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #555;
}
