body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f0;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  --color-primary: #170d2f;
  --color-text: #1a1a2e;
  --color-light-text: #666;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  padding: 20px;

  background: var(--color-primary);
}

.logo svg {
  fill: #fdfdfd;
}

.address, .legal {
  margin-bottom: 15px;
  font-size: 16px;
}

.legal {
  max-width: 800px;
  text-align: justify;
}

.info-page-image-container {
  width: 100%;
  max-width: 800px;
  margin: 0px auto 20px;
  text-align: center;
}

.info-page-image-container img {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px;
}

.content-below-image {
  padding: 20px;
  text-align: center;
  max-width: 720px; /* Constrain width for better readability */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px; /* Adjusted space before 'Our Values' heading */
}

.content-below-image p,
.three-column-container .column p {
  line-height: 1.7;
}

.content-below-image + h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.three-column-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: 20px auto;
}

.three-column-container .column {
  flex: 1;
  padding: 15px;
  border-radius: 8px;
}

.three-column-container .column h3 {
  text-align: center;
  margin-bottom: 10px;
}

.value-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  max-width: 120px;
  height: auto;
}

@media (max-width: 768px) {
  .three-column-container {
    flex-direction: column;
    gap: 15px;
  }
}

.info {
  margin-top: 30px;
}

.info a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  font-weight: bold;
}

.footer {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-light-text);
}

.footer p {
  margin: 0 0 0.5em 0;
}

.footer ul {
  font-size: 0.9em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  display: inline-block;
  margin-right: 0.5em;
  line-height: 1.5em;
}

.footer ul li:last-child {
  margin-right: 0;
}

.footer a {
  color: var(--color-light-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-light-text);
  font-weight: normal;
  transition: color 0.3s;
}

.footer a:hover,
.footer a:focus {
  color: var(--color-text);
}
