.page-container {
  max-width: 100%;
  margin: 0 auto;
}

.page-container2 {
  max-width: 80%;
  margin: 0 auto;
}

.header-container {
  width: 100%;
  margin-bottom: 20px;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
}

.content-section {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header img {
  display: inline-block;
}

.section {
  display: flex;
  margin-bottom: 30px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.section-image {
  width: 200px;
  height: auto;
  margin-right: 20px;
  border-radius: 5px;
}

.content {
  flex: 1;
  line-height: 1.2;
  text-align: justify;
  margin-bottom: 20px;
}

h1, h2 {
  color: #0066cc;
  margin-top: 0;
  font-size: 24px;
}

p {
  font-size: 16px;
  margin-bottom: 25px;
}

.motto img {
  max-width: 100%;
  height: auto;
}

.signature {
  text-align: right;
  font-weight: bold;
  margin-bottom: 20px;
}

.principal-message {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.images {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.principal-message .header-image {
  max-width: 200px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .section-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .page-container2 {
    max-width: 95%;
  }
}


.enlargeable {
    cursor: pointer;
    transition: 0.3s;
}

.enlargeable:hover {
    opacity: 0.7;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}
.image-gallery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.5s ease;
}
.gallery-image {
  width: calc(33.33% - 7px);
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}
.nav-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 3px;
  cursor: pointer;
}
.nav-dot.active {
  background-color: #666;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  display: block;
  margin: auto;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close {
  color: #f1f1f1;
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.content_Pdf a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content_Pdf p {
  margin: 15px 0;
  font-size: 16px;
  color: #333;
  line-height: 1; /* As requested, setting line height to 1.0 */
}

.content_Pdf a:hover {
  color: #3498db;
  text-decoration: underline;
}

.content_Pdf {
  text-align: center; /* Align text to the left */
}
