@media (max-width: 1080px) {
  .page-container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0 12px; /* Add horizontal padding */
    box-sizing: border-box;
  }
  .page-container {
  /* width: 100vw;           <-- remove */
  /* max-width: 100vw;       <-- remove */
  width: 100%;
  max-width: 100%;
}
.middle-section {
  /* max-width: 100vw;       <-- remove */
  max-width: 100%;
}

  .middle-section {
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    padding: 0 0 0 0 !important;
    box-sizing: border-box;
  }

  .top-content {
    text-align: center;
    align-items: center;
    padding: 0 8px;
  }

  .tag {
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 16px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin: 0 auto 24px auto;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .static-images {
    display: flex;
  flex-direction: column;
  align-items: center;   /* <-- centers images horizontally */
  justify-content: center;
  gap: 16px;             /* optional spacing between images */
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  }

  .static-images img,
  .static-image {
   display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;        /* ensure centering inside container */
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  object-fit: cover;
  }

  .close-button {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .site-footer {
    font-size: 13px;
    padding: 16px 0;
    text-align: center;
  }
}

@media (max-width: 700px) {
  html, body {
  overflow-x: hidden!important;
  width: 100%;
}
  .page-container {
    padding: 0; /* No horizontal margin */
  }
  .section-title {
    font-size: 1.3rem;
  }
  .description {
    font-size: 0.85rem;
    width: 80%;
    padding: 0;
    line-height: 1.5;
    margin: 0 auto 12px auto;
  }
  .static-images {
    padding: 0; /* No side padding for images */
    margin: 0!important;
  }
  .static-images img,
  .static-image {
    border-radius: 4px;
    margin: 10px!important; /* No vertical gap between images */
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  }
  .footer-services {
    gap: 4px;
    font-size: 0.85rem;
    max-width: 80vw;
    margin-bottom: 4px;
    margin: auto;
  }
  .footer-services span {
    padding: 0 1px;
  }
}