body,html{
    width: 100%;
    margin: 0;
}
/* General Page Styling */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
  color: #333;
}

/* Main Mission Container */
.Mission {
  max-width: 1100px;
  margin: 50px auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Main Heading */
.Mission h1 {
  text-align: center;
  color: #1b4b72;
  font-size: 2.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission Paragraph */
.Mission p {
  line-height: 1.8;
  font-size: 17px;
  text-align: justify;
  color: #444;
}

/* Vision Section */
.vision {
  margin-top: 50px;
  text-align: center;
  background: #f0f6fb;
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid #0077b6;
}

.vision h2 {
  text-align: center;
  color: #0077b6;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.vision p {
  text-align: center;
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
}

.vision img {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Apostolate Section */
.apostolate {
  margin-top: 50px;
  text-align: center;
  background: #f9f9ff;
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid #4a90e2;
}

.apostolate h2 {
  color: #004080;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.apostolate p {
  text-align: center;
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

/* Apostolate Gallery */
.apostolate-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.apostolate-gallery img {
  width: 45%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.apostolate-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) 
  .vision img,
  .apostolate-gallery img {
    width: 90%;
  }

  .Mission {
    padding: 20px;
  }

  .Mission h1 {
    font-size: 1.8em;
  }
footer{
  background-color:skyblue;
  font-size: large;
  text-align: center;
}