.promo {
    p {
        font-size: 24px;
        letter-spacing: 0.72px;
    }
}
.sections section {
    gap: 30px;
    .section-title {
        margin: 0;
    }
    div {
        display: grid;
        gap: 10px;
        h3 {
            color: var(--blue, #016170);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.6px;
        }
        &:first-of-type h3 {
            color: var(--grey, #464F53);
        }
        p {
            font-size: 20px;
            letter-spacing: 0.6px;
        }
        ul {
            padding-left: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            li {
                letter-spacing: 0.48px;
                b {
                    font-weight: 700;
                    letter-spacing: inherit;
                }
            }
        }
        h4 {
            font-weight: 700;
            letter-spacing: 0.48px;
            + ul {
                gap: 0;
            }
        }
    }
    > p {
        font-weight: 700;
        letter-spacing: 0.48px;
        a {
            font-weight: inherit;
            letter-spacing: inherit;
            color: var(--blue, #016170);
        }
    }
}
.delivery .section-title::before {
    content: '\e905';
}
.payment .section-title::before {
    content: '\e906';
}
.questions {
    .section-title {
        span {
            background-color: var(--orange, #e45c2b);
        }
        &::before {
            content: '\e907';
            color: var(--orange, #e45c2b);
        }
    }
    h3 {
        color: var(--grey);
    }
    .show-all {
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: fit-content;
        margin: 0 auto;
        &::after {
            content: '\e922';
            font: 100 20px/1 'icon';
            color: inherit;
            width: 30px;
            height: 27px;
            flex-shrink: 0;
            border-radius: 10px;
            border: 1px solid var(--border, #E4E4E4);
            display: grid;
            place-items: center;
            transition: .3s linear;
        }
    }
}