* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-blue {
  background-color: #0056b3;
}

.bg-steel {
  background-color: #586b80;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.6;
}

header .hero {
  background-image: url('hero-banner.jpg'); /* Ensure you have an image named hero-banner.jpg in your directory */
  background-size: cover;
  background-position: center;
  color: white;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

h1 {
  font-size: 3rem;
}

header p {
  font-size: 1.5rem;
  margin-top: 10px;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
}

hr {
  width: 70%;
  margin: 0 15%;
}

.about {
  background-color: #f4f4f4;
  padding: 50px 0;
  text-align: center;
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.cta-banner {
  color: white;
  text-align: center;
  padding: 50px 0;
}



.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-banner .cta-button {
  background-color: #ffc107;
  color: black;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-banner .cta-button:hover {
  background-color: #e0a800;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 10px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
