/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #fff;
  line-height: 1.5;
}

a {
  color: #0054a6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

header h1 {
  font-size: 2rem;
}

/* Navigation */
nav {
  background-color: #444;
}

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

nav li {
  margin: 0 15px;
}

nav a {
  color: white;
  font-weight: bold;
}

/* Hero Image */
.hero {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

/* Main content */
main {
  padding: 20px 0;
}

section {
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

input, textarea, button {
  padding: 10px;
  font-size: 1rem;
}

button {
  background-color: #0054a6;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #003d80;
}

/* Responsive design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    height: 200px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  nav li {
    margin: 8px 0;
  }

  button {
    font-size: 0.95rem;
    padding: 8px;
  }
}
