#guide.page{
    gap: 48px;
    padding-top: 64px;
    overflow: visible;
    & h2{
        font-weight: 700;
        font-size: 32px;
    }
    & .step{
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 25%;
        max-width: 512px;
        & > h2{
            padding: 16px;
            height: 72px;
            width: 72px;
            box-sizing: border-box;
            background: #D8EAFF;
            border-radius: 72px;
            color: #002E58;
            font-size: 40px;
        }
        & > h3{
            font-size: 24px;
            font-weight: 650;
            line-height: 29px;
        }
        & > p{
            font-size: 16px;
            font-weight: 400;
            line-height: 120%;
        }
    }
    & .stepList{
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        gap: 32px;
    }
    & .marker{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px 24px;
        gap: 24px;

        background: #D8EAFF;
        border-radius: 16px;

        & > span.material-symbols-outlined{
            color: #002E58;
        }
        & > .text{
            display: flex;
            flex-direction: column;
            gap: 4px;
            & > p.bold{
                font-weight: 700;
                font-size: 20px;
                line-height: 120%;
                color: #002E58;
            }
            & > p.light{
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #000000;
            }
        }
    }
}