/* Style code necessary for the running */

    body {
      font-family: Arial, sans-serif;
      background: #F7FAFE;
      margin: 0;
      padding: 0;
      line-height: 1.5;
    }

    header, footer {
      background: #003A73;
      color: white;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 20px 40px;
    }

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img,
.whatsapp img {
  height: 95px;
  width: auto;
}

    footer {
      padding: 20px 40px;
      text-align: center;
    }

    header img {
      height: 105px;
    }

    header .nav-buttons {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-buttons .nav-link {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1.25px;
    margin: 10px;
    padding: 8px 20px;
    font-size: 1rem;
    background: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none; /* remove underline */
    }

    .nav-buttons .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    }

    .section {
      display: none;
      padding: 40px 20px;
    }

    .active {
      display: block;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .flex-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 4%;
      align-items: center;
    }

    .card {
      flex: 1 1 30%;
      min-width: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center; /* vertical centering */
      align-items: center;     /* horizontal centering */
      text-align: center;
      height: auto;            /* full height so centering works */
    }

    .responsive-text {
      font-size: clamp(1rem, 2vw, 1.2rem);
    }

    img {
      max-width: 100%;
      height: auto;
      border: none;
    }

    h2, h3 {
      text-align: left;
    }

    ol {
      padding-left: 20px;
    }

    p {
      text-align: justify;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: center;
      }

      header .nav-buttons {
        flex-direction: column;
        align-items: center;
      }

      .flex-wrap {
        flex-direction: column;
      }
    }

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .logo img,
  .whatsapp img {
    width: auto;
  }
}

/* Beginning of images grid */

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2 per row */
  gap: 20px;
  padding: 20px 30px;
  margin: auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr; /* One per row on phones */
  }
}

/* Beginning for zoomable images */

  .zoomable-image {
    cursor: pointer;
    max-width: 100%;
    height: auto;
    transition: 0.3s;
  }

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);

  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  animation: zoom 0.4s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 10px;
}

  @keyframes zoom {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
  }

  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

/* Fadding animation for images */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease-out;
}

/* When in view: fade + slide up */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}