body,html{
    width: 100%;
    margin: 0;
}
/* General page styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* History Section */
.history {
  text-align: center;
  background-color: #fff;
  margin: 40px auto;
  max-width: 1100px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.history h2 {
  color: #0066cc;
  margin-bottom: 10px;
}

.history p {
  line-height: 1.7;
}

/* Founders Section - Horizontal Layout */
#founders {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  margin: 50px auto;
  max-width: 1100px;
}

#founders .box {
  background-color: #fff;
  width: 45%;
  min-width: 250px;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#founders .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
#founders h2{
  color: #0066cc;
}
#founders h3{
  color: #0066cc;
}
#founders img {
  width: 70%;
  max-width: 300px;
  border-radius: 12px;
  margin: 15px 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
/* Last Section - Milestone, Charism, Spirituality */
#last {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto;
  max-width: 1200px;
}

#last .box {
  background-color: #fff;
  width: 30%;
  min-width: 300px;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#last .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

#last h1 {
  color: #0066cc;
  margin-bottom: 15px;
}

#last p {
  line-height: 1.6;
}

/* Responsive design for smaller screens */
@media (max-width: 900px) 
  /* #founders, last {
    flex-direction: column;
    align-items: center; */


  #founders .box, #last .box {
    width: 90%;
  }
  footer{
  background-color:skyblue;
  font-size: large;
  text-align: center;
}