.info-page {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #1e1e1e;
  padding: 50px 20px;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 8px;
}

h1, h2 {
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}

.info-page h1,
.info-page h2 {
  color: #1e1e1e;
  margin-bottom: 15px;
  margin-top: 15px;
}

.info-page ul,
.info-page ol {
  margin-left: 20px;
  line-height: 1.6;
}

.info-page p {
  margin-bottom: 20px;
}

.with-logo .logo-container {
  display: flex;
  align-items: flex-start;
  /* vertically align at top */
  gap: 20px;
  /* space between text and image */
}

.with-logo .logo-container .text {
  flex: 1;
  /* take remaining space for text */
}

.logo-image {
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
  width: 250px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  background-color: #f0f0f0;
  padding: 5px;
}

.logo-image:hover {
  transform: scale(1.2);
}

.spot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.spot:hover {
  transform: translateY(-5px);
}

.spot-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
    .logo-image {
        display: none;
    }
}