<style>
  .info-card-section {
    --info-bg: #020617;
    --info-card-bg: rgba(15, 23, 42, 0.98);
    --info-border: rgba(148, 163, 184, 0.5);
    --info-text-main: #e5e7eb;
    --info-text-muted: #9ca3af;
    --info-text-strong: #f9fafb;
    --info-accent: #fbbf24;
    --info-accent-soft: rgba(251, 191, 36, 0.12);
    --info-row-alt: rgba(15, 23, 42, 0.95);
    color: var(--info-text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .info-card {
    margin: 2rem auto;
    max-width: 960px;
    padding: 2.25rem 2rem 2.1rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left,
                rgba(15, 23, 42, 0.96),
                rgba(15, 23, 42, 0.99));
    border: 1px solid var(--info-border);
    box-shadow:
      0 24px 60px rgba(15, 23, 42, 0.9),
      0 0 0 1px rgba(15, 23, 42, 0.95);
    position: relative;
    overflow: hidden;
  }

  .info-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at top right, var(--info-accent-soft), transparent 60%),
      radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.12), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
  }

  .info-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    font-size: 0.85rem;
    color: var(--info-text-muted);
  }

  .info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--info-text-main);
    white-space: nowrap;
  }

  .info-meta-text {
    flex: 1 1 220px;
    text-align: right;
  }

  .info-title {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    color: var(--info-text-strong);
  }

  .info-subtitle {
    margin: 0.35rem 0 1.3rem;
    font-size: 0.94rem;
    color: var(--info-text-muted);
  }

  .info-divider {
    width: 100%;
    height: 1px;
    margin: 0 0 1.5rem;
    background: linear-gradient(
      to right,
      transparent,
      rgba(148, 163, 184, 0.7),
      transparent
    );
  }

  .info-section-header {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
  }

  .info-section-icon {
    font-size: 1.1rem;
    line-height: 1;
  }

  .info-section-label {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--info-accent);
  }

  .info-advice-header {
    margin-top: 1.9rem;
  }

  .info-section-kicker {
    margin: 0.6rem 0 1.1rem;
    font-size: 0.9rem;
    color: var(--info-text-muted);
  }

  .info-table-wrapper {
    border-radius: 1.1rem;
    padding: 1.1rem 1.2rem 1rem;
    background: radial-gradient(circle at top left,
                rgba(15, 23, 42, 0.97),
                rgba(15, 23, 42, 0.99));
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow-x: auto;
  }

  .info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .info-table thead th {
    text-align: left;
    padding: 0.4rem 0.65rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--info-text-muted);
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  }

  .info-table tbody td {
    padding: 0.55rem 0.65rem;
    vertical-align: top;
    line-height: 1.5;
  }

  .info-table tbody tr:nth-child(odd) {
    background-color: rgba(15, 23, 42, 0.85);
  }

  .info-table tbody tr:nth-child(even) {
    background-color: var(--info-row-alt);
  }

  .info-table tbody tr:first-child td {
    padding-top: 0.75rem;
  }

  .info-table tbody tr:last-child td {
    padding-bottom: 0.75rem;
  }

  .info-body {
    margin: 1.3rem 0 0.9rem;
    font-size: 0.95rem;
    color: var(--info-text-main);
  }

  .info-list {
    margin: 0.2rem 0 1.4rem 1.1rem;
    padding-left: 0.2rem;
    display: grid;
    gap: 0.6rem;
    font-size: 0.93rem;
  }

  .info-list > li {
    padding-left: 0.1rem;
  }

  .info-list ul {
    margin-top: 0.4rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
  }

  .info-footer {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--info-text-muted);
  }

  @media (max-width: 720px) {
    .info-card {
      padding: 1.75rem 1.25rem 1.6rem;
      border-radius: 1.25rem;
    }

    .info-meta {
      flex-direction: column;
      align-items: flex-start;
    }

    .info-meta-text {
      text-align: left;
    }

    .info-title {
      font-size: 1.25rem;
    }
  }
</style>
