main {
    padding: 76px 0 80px;
    background-color: rgb(25, 48, 73);

    @media (width<=768px) {
        padding-top: 52px;
    }

    .hero {
        position: relative;

        img {
            width: 100%;
        }

        .layout {
            position: absolute;
            width: fit-content;
            height: fit-content;
            inset: 0;
            margin: auto;
            padding: 0 24px 8px;
            display: flex;
            flex-direction: column;

            @media (width<=768px) {
                padding: 0 16px 8px;

            }

            h1 {
                text-align: center;
                color: rgb(255, 128, 0);
                font-size: 32px;
                font-weight: bold;
                -webkit-text-stroke: 6px rgb(24, 24, 24);
                paint-order: stroke;
                padding-bottom: 8px;

                br {
                    display: none;
                }
            }

            p {
                text-align: center;
                font-size: 24px;
                font-weight: bold;
                -webkit-text-stroke: 4px rgb(24, 24, 24);
                paint-order: stroke;
            }

            @media (width<=768px) {
                h1 {
                    font-size: 24px;

                    br {
                        display: block;
                    }
                }

                p {
                    font-size: 16px;
                }
            }
        }
    }

    .service {
        .wrapper {
            padding: 24px 0;

            .layout {
                padding: 24px;

                @media (width<=768px) {
                    padding: 24px 16px;
                }

                .outer {
                    width: 80%;
                    margin: 0 auto;
                    display: flex;
                    flex-direction: column;
                    gap: 36px;

                    @media (width<=768px) {
                        width: 100%;
                    }

                    .inner {
                        padding: 36px 16px;
                        border-radius: 4px;
                        display: grid;
                        grid-template-columns: 1fr 280px;
                        align-items: center;
                        background-color: rgb(15, 30, 50);

                        @media (width<=768px) {
                            padding: 8px 8px 36px;
                            background-color: rgb(15, 30, 50);
                            grid-template-columns: none;
                        }

                        h3 {
                            -webkit-text-stroke: 4px rgb(2, 2, 2);
                            paint-order: stroke;
                            font-size: 20px;
                            font-weight: bold;
                            grid-column: span 2;
                            position: relative;
                            padding: 16px 16px 8px 88px;
                            border-bottom: solid 2px rgb(219, 233, 255);

                            br {
                                display: none;

                                @media (width<=500px) {
                                    display: block;
                                }
                            }

                            &::before {
                                position: absolute;
                                line-height: .8;
                                bottom: 6px;
                                left: 16px;
                                font-family: 'Great Vibes', cursive;
                                font-weight: bold;
                                font-size: 56px;

                                @media (width<=768px) {
                                    font-size: 40px;
                                    left: 8px;
                                    bottom: 10px;
                                }
                            }

                            @media (width<=768px) {
                                grid-column: auto / auto;
                                font-size: 18px;
                                padding: 16px 16px 8px 60px;

                            }
                        }

                        .first-h3 {
                            &::before {
                                content: "01.";
                            }
                        }

                        .second-h3 {
                            &::before {
                                content: "02.";
                            }
                        }

                        .third-h3 {
                            &::before {
                                content: "03.";

                                @media (width<=500px) {
                                    bottom: 24px;
                                }
                            }
                        }

                        .fourth-h3 {
                            &::before {
                                content: "04.";

                                @media (width<=500px) {
                                    bottom: 24px;
                                }
                            }
                        }

                        .text {
                            margin-top: 8px;
                            padding: 16px;

                            @media (width<=768px) {
                                padding: 8px 4px;
                                margin-top: auto;

                            }

                            h4 {
                                font-weight: bold;
                                font-size: 18px;
                                position: relative;
                                padding: 0 0 0 42px;

                                &::before {
                                    content: "Q.";
                                    position: absolute;
                                    left: 16px;
                                }

                                @media (width<=768px) {
                                    font-size: 16px;
                                }
                            }

                            p {
                                font-size: 18px;
                                position: relative;
                                padding: 0 0 0 42px;

                                &::before {
                                    content: "A.";
                                    position: absolute;
                                    left: 16px;
                                }

                                @media (width<=768px) {
                                    font-size: 16px;
                                }
                            }
                        }

                        .btn {
                            margin-top: 8px;
                            padding-right: 16px;

                            @media (width<=768px) {
                                padding-right: 0;
                            }

                            a {
                                color: rgb(219, 233, 255);
                                -webkit-text-stroke: 3px rgb(24, 24, 24);
                                paint-order: stroke;
                                padding: 16px;
                                border-radius: 999px;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                font-weight: bold;
                                font-size: 18px;
                                position: relative;
                                background: linear-gradient(135deg, rgb(255, 140, 0), rgb(255, 100, 0));

                                &::before {
                                    content: "";
                                    position: absolute;
                                    right: 10px;
                                    width: 32px;
                                    height: 32px;
                                    background-color: rgb(51, 51, 51);
                                    border-radius: 99px;
                                }

                                &::after {
                                    content: "＞";
                                    position: absolute;
                                    right: 16px;
                                    color: rgb(219, 233, 255);
                                    -webkit-text-stroke: 0px rgb(255, 255, 255);
                                }

                                @media (width<=768px) {
                                    width: 80%;
                                    margin: 0 auto;
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .information {
        .wrapper {
            padding: 24px 0;

            .layout {
                padding: 24px;

                @media (width<=768px) {
                    padding: 16px;
                }

                .outer {
                    width: 80%;
                    margin: 0 auto;
                    display: flex;
                    flex-direction: column;
                    gap: 36px;

                    @media (width<=768px) {
                        width: 100%;
                    }

                    .inner {
                        p {
                            font-size: 18px;

                            @media (width<=768px) {
                                font-size: 16px;
                            }

                            strong {
                                background: linear-gradient(transparent 60%, rgb(151, 101, 51) 60%);
                            }
                        }

                        h3 {
                            font-size: 18px;
                            font-weight: bold;
                            position: relative;
                            padding-left: 16px;
                            margin-bottom: 4px;
                            -webkit-text-stroke: 4px rgb(51, 51, 51);
                            paint-order: stroke;

                            &::before {
                                content: "";
                                width: 8px;
                                height: 100%;
                                background-color: rgb(255, 128, 0);
                                position: absolute;
                                left: 0;
                                border-radius: 1px;
                            }
                        }

                        ul {
                            color: rgb(190, 199, 210);
                            font-size: 18px;
                            padding: 0 36px;

                            @media (width<=768px) {
                                padding: 0 24px;
                                font-size: 16px;
                            }

                            li {
                                list-style: circle;
                            }
                        }
                    }
                }
            }
        }
    }
}