/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9fcff; /* Light blue background */
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #34495e;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin: 0;
  font-size: 1.8em;
  letter-spacing: 2px;
}

header nav ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  flex: 1;
  padding: 20px;
}

/* History Section */
.history-section {
  margin: 40px 0;
  text-align: center;
}

.history-section h2 {
  font-size: 2em;
  color: #34495e;
  margin-bottom: 20px;
}

.history-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.history-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.history-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Vision Section */
.vision-section {
  margin: 40px 0;
  text-align: center;
}

.vision-section h2 {
  font-size: 2em;
  color: #34495e;
  margin-bottom: 20px;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.vision-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section {
  margin: 40px 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 2em;
  color: #34495e;
  margin-bottom: 20px;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.mission-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mission-content ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.mission-content ul li i {
  margin-right: 10px;
  color: #34495e;
}

.mission-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #34495e;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
  font-size: 0.9em;
}