.high-density-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.high-density-row,
.high-density-info-row,
.high-density-gallery-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.high-density-row img,
.high-density-info-row img,
.high-density-gallery-row img {
  max-height: 100%;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.high-density-info-row .text-box {
  flex: 1 1 300px;
  max-width: 600px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.high-density-link-row {
  text-align: center;
  margin-bottom: 30px;
}

.high-density-link-row a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.high-density-link-row a:hover {
  text-decoration: underline;
}

.high-density-note-row {
  text-align: center;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 30px;
}

.spacer {
  width: 30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .high-density-row,
  .high-density-info-row,
  .high-density-gallery-row {
    flex-direction: column;
  }

  .spacer {
    display: none;
  }

  .high-density-info-row .text-box {
    max-width: 100%;
  }
}
