.info-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
}

.info-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.info-header h1 {
  color: #a52a2a;
  font-size: 2.1rem;
  margin: 0 0 0.5rem 0;
}

.info-header .subtitle {
  color: #7e8a6e;
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.info-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.info-menu a {
  color: #a52a2a;
  font-weight: 700;
  text-decoration: none;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}

.info-menu a:hover,
.info-menu a:focus {
  background: #a52a2a;
  color: #fff;
}

.info-section {
  margin-bottom: 2.5rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.info-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.info-section h2 {
  color: #a52a2a;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.info-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.1rem;
}

.info-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.info-section p, .info-section ul {
  font-size: 1.05rem;
  line-height: 1.7;
}

.info-section a {
  color: #a52a2a;
  text-decoration: underline;
}

.info-section a:hover {
  color: #7a1d1d;
}

@media (max-width: 600px) {
  .info-wrapper {
    padding: 1.2rem 0.7rem;
    border-radius: 0;
    box-shadow: none;
  }
  .info-header h1 {
    font-size: 1.3rem;
  }
  .info-header .subtitle {
    font-size: 1rem;
  }
  .info-section h2 {
    font-size: 1.05rem;
  }
  .info-menu {
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
  }
  .info-menu a {
    font-size: 0.98rem;
    text-align: center;
  }
}
