body.info-page {
  min-height: 100svh;
  overflow-y: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 52%, #edf7ff 100%);
}

.info-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(14px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.info-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary-dark);
}

.info-brand img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(19, 151, 245, 0.16);
}

.info-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-nav a:not(.btn) {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.info-nav a.active,
.info-nav a:hover {
  color: var(--primary-dark);
  background: #f2f9ff;
}

.info-main {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 calc(72px + env(safe-area-inset-bottom, 0px));
}

.info-hero,
.info-card,
.info-panel,
.info-grid details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-hero {
  padding: clamp(24px, 5vw, 46px);
  margin-bottom: 18px;
}

.info-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.45;
}

.info-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 2;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-grid-single {
  grid-template-columns: 1fr;
}

.info-card,
.info-panel {
  padding: 22px;
}

.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eaf4ff;
  color: var(--primary-dark);
  font-weight: 900;
}

.info-card h2,
.info-panel h2 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.info-panel {
  margin-top: 14px;
}

.quick-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.quick-service-grid a {
  min-height: 64px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid #c7e8ff;
  background: #f2f9ff;
  color: var(--primary-dark);
  font-weight: 800;
}

.info-grid details {
  overflow: hidden;
}

.info-grid summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.info-grid summary::-webkit-details-marker {
  display: none;
}

.info-grid summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #eaf4ff;
  color: var(--primary-dark);
}

.info-grid details[open] summary::after {
  content: "-";
}

.info-grid details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 2;
}

@media (max-width: 900px) {
  .info-grid,
  .quick-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .info-topbar {
    padding: calc(8px + env(safe-area-inset-top, 0px)) 14px 8px;
  }
  .info-brand img {
    width: 42px;
    height: 42px;
  }
  .info-nav a:not(.btn) {
    display: none;
  }
  .info-main {
    width: calc(100% - 24px);
    padding-top: 18px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }
  .info-hero,
  .info-card,
  .info-panel,
  .info-grid details {
    border-radius: 24px;
  }
  .info-actions .btn {
    flex: 1 1 190px;
  }
}
