.info-page {
    --info-ink: #172033;
    --info-muted: #62708a;
    --info-blue: #2859d9;
    --info-blue-dark: #173a96;
    max-width: 1180px;
    margin: 28px auto 10px;
}

.info-page-hero {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 58px 64px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(125deg, #152d69 0%, #2859d9 58%, #3f7cf4 100%);
    box-shadow: 0 24px 55px rgba(29, 61, 136, .22);
}

.info-page-hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    right: -90px;
    top: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    box-shadow: -190px 250px 0 15px rgba(255, 255, 255, .06);
}

.info-page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.info-page-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.info-page-hero h1 { margin: 0 0 16px; font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -.04em; }
.info-page-hero p { max-width: 720px; margin: 0 0 24px; color: rgba(255, 255, 255, .88); font-size: 19px; line-height: 1.65; }
.info-page-updated { font-size: 13px; color: rgba(255, 255, 255, .72); }
.info-page-updated i { margin-right: 5px; }

.info-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.info-highlight-card { padding: 25px; border: 1px solid #e3e8f2; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(23, 32, 51, .05); }
.info-highlight-dot { display: block; width: 10px; height: 10px; margin-bottom: 16px; border-radius: 50%; background: #37c989; box-shadow: 0 0 0 7px rgba(55, 201, 137, .13); }
.info-highlight-card h2 { margin: 0 0 8px; color: var(--info-ink); font-size: 18px; font-weight: 800; }
.info-highlight-card p { margin: 0; color: var(--info-muted); line-height: 1.6; }

.info-page-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 28px; margin-top: 28px; align-items: start; }
.info-page-nav { position: sticky; top: 20px; padding: 22px; border: 1px solid #e3e8f2; border-radius: 18px; background: #fff; }
.info-page-nav strong { display: block; margin-bottom: 13px; color: var(--info-ink); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.info-page-nav nav { display: flex; flex-direction: column; gap: 4px; }
.info-page-nav a { padding: 9px 11px; border-radius: 9px; color: #5d6980; font-size: 14px; line-height: 1.35; text-decoration: none; transition: .18s ease; }
.info-page-nav a:hover { color: var(--info-blue); background: #f0f4ff; }

.info-page-content { min-width: 0; }
.info-section { scroll-margin-top: 20px; margin-bottom: 18px; padding: 34px 38px; border: 1px solid #e3e8f2; border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(23, 32, 51, .045); }
.info-section h2 { margin: 0 0 20px; color: var(--info-ink); font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.info-section p { margin: 0 0 15px; color: #4f5d75; font-size: 16px; line-height: 1.75; }
.info-section p:last-child { margin-bottom: 0; }
.info-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.info-list li { position: relative; padding-left: 29px; color: #4f5d75; font-size: 16px; line-height: 1.65; }
.info-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 10px; height: 10px; border: 3px solid #fff; border-radius: 50%; background: var(--info-blue); box-shadow: 0 0 0 2px rgba(40, 89, 217, .18); }

.info-faq-list { display: grid; gap: 10px; }
.info-faq { overflow: hidden; border: 1px solid #e4e9f2; border-radius: 13px; background: #fbfcff; }
.info-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; color: var(--info-ink); font-weight: 750; cursor: pointer; list-style: none; }
.info-faq summary::-webkit-details-marker { display: none; }
.info-faq summary span { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.info-faq summary span::before, .info-faq summary span::after { content: ""; position: absolute; top: 8px; left: 2px; width: 14px; height: 2px; border-radius: 2px; background: var(--info-blue); transition: .2s ease; }
.info-faq summary span::after { transform: rotate(90deg); }
.info-faq[open] summary span::after { transform: rotate(0); }
.info-faq[open] summary { color: var(--info-blue-dark); }
.info-faq div { padding: 0 20px 18px; }
.info-faq div p { margin: 0; font-size: 15px; }

.info-contact-card { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 26px 30px; border-radius: 18px; color: #fff; background: #172033; }
.info-contact-card span { display: block; margin-bottom: 4px; color: #aab5ca; font-size: 13px; }
.info-contact-card strong { font-size: 19px; }
.info-contact-card a { flex: 0 0 auto; padding: 12px 16px; border-radius: 10px; color: #fff; background: var(--info-blue); font-weight: 700; text-decoration: none; }
.info-contact-card a:hover { color: #fff; background: #3470f2; }
.info-contact-card i { margin-left: 7px; }

@media (max-width: 991px) {
    .info-page-hero { padding: 45px 38px; }
    .info-page-layout { grid-template-columns: 1fr; }
    .info-page-nav { position: static; }
    .info-page-nav nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .info-page { margin-top: 14px; }
    .info-page-hero { min-height: 0; padding: 34px 24px; border-radius: 18px; }
    .info-page-hero p { font-size: 16px; }
    .info-highlights { grid-template-columns: 1fr; }
    .info-page-nav nav { grid-template-columns: 1fr; }
    .info-section { padding: 25px 21px; border-radius: 16px; }
    .info-section h2 { font-size: 21px; }
    .info-contact-card { align-items: stretch; flex-direction: column; }
    .info-contact-card a { text-align: center; }
}
