* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fbf7fc;
  color: #25152b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.topbar {
  border-bottom: 1px solid #eadff0;
  background: rgba(255, 255, 255, 0.82);
}

.topbar-inner {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4e145f;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 86px;
  height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #4e145f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero,
.content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 44px 0 22px;
}

.hero img {
  width: min(360px, 86vw);
  display: block;
  margin: 0 auto 22px;
}

h1 {
  margin: 0;
  color: #4e145f;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 1.05;
  text-align: center;
}

.lead {
  max-width: 700px;
  margin: 14px auto 0;
  color: #5d4765;
  font-size: 18px;
  text-align: center;
}

.content {
  padding: 18px 0 56px;
}

.section {
  padding: 24px 0;
  border-top: 1px solid #eadff0;
}

h2 {
  margin: 0 0 10px;
  color: #4e145f;
  font-size: 24px;
}

p,
ul {
  margin: 0 0 12px;
}

li {
  margin: 6px 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-item {
  border: 1px solid #eadff0;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.label {
  color: #76627f;
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.value {
  color: #25152b;
  font-weight: 800;
}

.footer {
  border-top: 1px solid #eadff0;
  color: #76627f;
  font-size: 14px;
  padding: 22px 16px;
  text-align: center;
}

@media (max-width: 560px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav {
    justify-content: flex-start;
  }
}
