<!-- style.css -->
/* Save this as style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4faff;
  color: #333;
}

header.hero {
  background: url('images/mid.jpeg') no-repeat center center/cover;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.hero-content nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2rem;
}

.about {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

.cta {
  text-align: center;
  background: #007acc;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 800px;
}

.cta-button {
  background: white;
  color: #007acc;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}

footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 1rem;
}
