
body {
  background-color: #f3f7ff;
  font-family: "Arial", sans-serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}


header {
  text-align: center;
  background-color: #004aad;
  color: white;
  padding: 30px 20px;
}

.banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-bottom: 5px solid #003a8c;
}

h1 {
  font-size: 36px;
  margin-top: 20px;
}


main {
  padding: 30px;
  text-align: center;
}

p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 18px;
  color: #333;
}


.content-img {
  width: 80%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  margin: 30px auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Learn More Section */
.links {
  margin-top: 50px;
  text-align: center;
  background-color: #e9f1ff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.links h2 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 28px;
}

.links p {
  color: #333;
  margin-bottom: 25px;
  font-size: 17px;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin: 20px 0;
}


.icon {
  width: 50px;
  vertical-align: middle;
  margin-right: 10px;
}

.links a {
  background-color: #004aad;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: bold;
}

.links a:hover {
  background-color: #0077ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Layout */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .content-img {
    width: 95%;
  }

  .links a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}

.extra-images {
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
}

.extra-images h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.photo-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.photo-grid img {
  width: 45%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

