.info-page {
    background: #f7f8fb;
    color: #17202f;
    overflow: hidden;
}

.info-page .container {
    max-width: 1180px;
}

.info-hero {
    position: relative;
    padding: 86px 0 116px;
    color: #fff;
    background: #17202f;
    isolation: isolate;
}

.info-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(23, 32, 47, .96), rgba(23, 32, 47, .76)),
    url("../../../frontend/slider-landing/network.png");
    background-size: cover;
    background-position: center;
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffb36b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: currentColor;
}

.info-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
}

.info-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.info-section {
    padding: 74px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.faq-aside,
.faq-card,
.info-cta {
    border: 1px solid #e7ebf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.faq-aside {
    padding: 28px;
    position: sticky;
    top: 24px;
}

.faq-aside h2 {
    margin: 0 0 12px;
    color: #17202f;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.faq-aside p {
    margin: 0 0 18px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.faq-aside a,
.info-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 6px;
    background: #f7421e;
    color: #fff;
    font-weight: 800;
}

.faq-aside a:hover,
.info-cta a:hover {
    background: #df3514;
    color: #fff;
    text-decoration: none;
}

.faq-card {
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-card__header {
    margin: 0;
}

.faq-card__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    color: #17202f;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.faq-card__button:hover {
    color: #f7421e;
    text-decoration: none;
}

.faq-card__button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff0ec;
    color: #f7421e;
}

.faq-card__body {
    padding: 0 24px 22px;
    color: #667085;
    font-size: 15px;
    line-height: 1.75;
}

.faq-card__body ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.faq-card__body a {
    color: #f7421e;
}

.info-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 28px;
}

.info-cta h2 {
    margin: 0 0 8px;
    color: #17202f;
    font-size: 26px;
    font-weight: 800;
}

.info-cta p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-aside {
        position: static;
    }

    .info-hero h1 {
        font-size: 36px !important;
    }

    .info-hero {
        padding: 64px 0 96px;
    }
}

@media (max-width: 575px) {
    .info-section {
        padding: 48px 0;
    }

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

    .faq-card__button {
        padding: 18px;
    }

    .faq-card__body {
        padding: 0 18px 18px;
    }
}