.info-page {
  min-height: 100vh;
  background: radial-gradient(900px 600px at 15% -20%, rgba(31, 76, 255, 0.22), transparent 70%),
    linear-gradient(170deg, #05080f 0%, #0a1224 100%);
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.info-main {
  max-width: 1000px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

.info-shell {
  background: rgba(10, 18, 36, 0.88);
  border: 1px solid rgba(120, 144, 255, 0.22);
  border-radius: 20px;
  padding: 24px;
  color: #e6edff;
}

.info-kicker {
  margin: 0;
  color: #45e0d2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

#info-title {
  margin: 8px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.info-content {
  color: #d5dff8;
  line-height: 1.8;
}

.info-content p {
  text-align: justify;
}

.info-tab-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.info-tab-link {
  border: 1px solid rgba(144, 165, 255, 0.3);
  color: #e8eeff;
  text-decoration: none;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
}

.info-tab-link.active {
  background: #1f4cff;
  border-color: #1f4cff;
}

.info-faq-list {
  display: grid;
  gap: 10px;
}

.info-faq-item {
  border: 1px solid rgba(123, 141, 219, 0.24);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(18, 29, 58, 0.65);
}

.info-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f1f5ff;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
}

.info-faq-answer {
  display: none;
  padding: 0 14px 12px;
  color: #cad7ff;
}

.info-faq-item.active .info-faq-answer {
  display: block;
}

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

.info-card {
  border: 1px solid rgba(126, 145, 228, 0.25);
  border-radius: 12px;
  padding: 14px;
  background: rgba(18, 29, 58, 0.62);
}

.info-card h3 {
  margin: 0 0 8px;
}

.info-card a {
  color: #8fb2ff;
  text-decoration: none;
}

.info-form {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.info-form input,
.info-form textarea {
  border: 1px solid #3a4a78;
  background: #0f1a34;
  color: #eef3ff;
  border-radius: 8px;
  padding: 10px;
}

.info-form textarea {
  min-height: 110px;
  resize: vertical;
}

.info-form button {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  background: #1f4cff;
  color: #fff;
  cursor: pointer;
}

.info-search-summary {
  margin: 4px 0 14px;
}

.info-search-group {
  margin-bottom: 18px;
}

.info-search-group h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #f2f6ff;
}

.info-result-item {
  border: 1px solid rgba(123, 141, 219, 0.24);
  border-radius: 12px;
  background: rgba(18, 29, 58, 0.65);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.info-result-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.info-result-item h3 a {
  color: #b8cbff;
  text-decoration: none;
}

.info-result-item p {
  margin: 0;
}

.info-result-type {
  display: inline-block;
  margin-bottom: 6px !important;
  font-size: 0.78rem;
  font-weight: 700;
  color: #45e0d2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.info-result-empty {
  opacity: 0.85;
}

.info-content mark {
  background: rgba(255, 208, 67, 0.35);
  color: #f9fdff;
  border-radius: 4px;
  padding: 0 2px;
}

@media (max-width: 760px) {
  .info-contact-grid {
    grid-template-columns: 1fr;
  }
}
