body.html{
    width:100%;
    margin:0;
}

/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #d2d7dc; /* light sky blue background */
  color: #333;
}

header {
  text-align: center;
  background: skyblue;
  padding: 20px;
  color: rgb(11, 10, 10);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.container {
  display: flex;
  justify-content: space-around;
  margin: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

/* Mission, Vision, Ministries Boxes */
.box {
  background: white;
  border-radius: 10px;
  width: 30%;
  min-width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.box h2 {
  color: skyblue;
  margin-bottom: 15px;
}

.box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Co-Values Section */
#co-values {
  background: white;
  margin: 40px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#co-values h2 {
  text-align: center;
  color: skyblue;
  margin-bottom: 20px;
}

.values-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.value-box {
  background: #e6f7ff;
  border-radius: 8px;
  padding: 15px;
  width: 60%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.value-box h3 {
  color: #0080ff;
  margin-bottom: 10px;
}

.value-box img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
footer{
  text-align: center;
  font-size: large;
  color: #007acc;
}