body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  max-width: 1200px;
  margin: 0 auto; /* Center the page horizontally */
}

/* Header */

header {
  background-color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-text {
  flex-grow: 1; /* Allow text to fill remaining space */
  text-align: center;
}

.header-text p {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}

header .logo {
  width: 150px;
}

/* Hero */

.hero {
  background: linear-gradient(45deg, #00A7E1, #F94144);
  width: 100%;
  height: auto; /* Set height dynamically based on content */
  padding: 50px 0;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
}

.hero-content {
  text-align: left;
  color: #fff;
}

.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-content ul li {
  list-style: disc;
  transform: translate(5%);
  padding: 0;
  margin: 0;
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Mission */

.mission {
  background-color: #f5f5f5;
  padding: 50px;
  text-align: center;
}

.mission h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.mission p {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Priorities */

.priorities {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.priorities h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.priorities ul {
  list-style: circle;
  padding: 0;
  margin: 0;
}

.priorities ul li {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.priorities p {
  text-align: center;
  font-size: 1.3em;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 50px;
}

.priorities-image-container {
  display: flex;
  justify-content: center;
}

.priorities-image {
  max-width: 50%; /* Limit image size to prevent overflow */
}

/* Footer */

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  font-size: 0.8em;
  margin: 0;
}
