.MainBannerSettings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 750px;
  margin: 2rem auto 0 auto;
  padding: 0;
  box-sizing: border-box;
  gap: 0.5rem;
}

.BannerSlogan {
  font-family: '2Bold';
  font-size: 1.5rem;
  color: #2D2D2D;
  text-align: center;
  margin: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, #FFE3D5, #FFE3D5);
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transform: skewX(-5deg);
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: -1rem;
}

.BannerSubtext {
  font-size: 0.9rem;
  font-family: '2Regular';
  display: block;
  margin-top: 0.2rem;
}

.BannerCenterImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
}

.BannerCenterImage img {
  width: 400px;
  height: auto;
  object-fit: contain;
}

.input-group {
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.InfoBlock {
  max-width: 750px;
  width: 100%;
  margin: 9rem auto 12rem auto;
  padding: 2.5rem;
  background-color: #FFE3D5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  box-sizing: border-box;
  text-align: center;
}

.InfoBlock-title {
  font-family: '2Bold';
  font-size: 1.3rem;
  color: #2D2D2D;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.5px;
}

.InfoBlock ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-family: '2Regular';
  font-size: 1rem;
  color: #2D2D2D;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.InfoBlock li {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  word-wrap: break-word;
}

.InfoBlock li::before,
.InfoBlock li::after {
  content: "•";
  color: #C02820;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 0.5rem;
}

.InfoBlock li:nth-child(-n+3) {
  font-family: '2Bold';
  font-size: 1.05rem;
}

.InfoBlock li:last-child {
  font-style: italic;
  font-size: 0.95rem;
  color: #555555;
}