                    * {
                        box-sizing: border-box
                    }

                    body {
                        margin: 0;
                        font-family: Arial,'Noto Sans KR',sans-serif;
                        background: #fff;
                        color: #1f2937;
                        line-height: 1.6
                    }

                    a {
                        text-decoration: none;
                        color: inherit
                    }

                    .featured-products {
                        background: #f8fafc;
                        padding: 76px 6% 84px
                    }

                    .featured-wrap {
                        max-width: 1240px;
                        margin: 0 auto
                    }

                    .featured-head {
                        text-align: center;
                        margin-bottom: 42px
                    }

                        .featured-head .eyebrow {
                            display: inline-block;
                            font-size: 13px;
                            font-weight: 800;
                            letter-spacing: .12em;
                            color: #0074c8;
                            text-transform: uppercase;
                            margin-bottom: 7px
                        }

                        .featured-head h2 {
                            font-size: 36px;
                            line-height: 1.2;
                            margin: 0 0 10px;
                            color: #111827
                        }

                        .featured-head p {
                            margin: 0;
                            color: #64748b;
                            font-size: 16px
                        }

                    .product-grid {
                        display: grid;
                        grid-template-columns: repeat(3,1fr);
                        gap: 24px
                    }

		    .product-grid-mobile {
                        display: grid;
                        gap: 24px
                    }

                    .product-card {
                        background: #fff;
                        border: 1px solid #e5e7eb;
                        border-radius: 18px;
                        overflow: hidden;
                        box-shadow: 0 7px 22px rgba(15,23,42,.055);
                        transition: transform .2s ease,box-shadow .2s ease
                    }

                        .product-card:hover {
                            transform: translateY(-4px);
                            box-shadow: 0 12px 28px rgba(15,23,42,.09)
                        }

                    .image-box {
                        height: 285px;
                        background: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 22px;
                        border-bottom: 1px solid #f1f5f9
                    }

                        .image-box img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            display: block
                        }

                    .product-body {
                        padding: 22px 24px 24px
                    }

                    .category {
                        font-size: 12px;
                        color: #0074c8;
                        font-weight: 800;
                        letter-spacing: .05em;
                        margin-bottom: 4px
                    }

                    .product-body h3 {
                        font-size: 23px;
                        line-height: 1.25;
                        margin: 0 0 5px;
                        color: #0f172a
                    }

                    .product-body p {
                        font-size: 14px;
                        color: #64748b;
                        margin: 0 0 17px;
                        min-height: 44px
                    }

                    .learn {
                        font-size: 14px;
                        color: #0069c8;
                        font-weight: 800
                    }

                    .all-products {
                        text-align: center;
                        margin-top: 38px
                    }

                        .all-products a {
                            display: inline-block;
                            background: #0074c8;
                            color: #fff;
                            padding: 13px 28px;
                            border-radius: 999px;
                            font-weight: 800
                        }
                    @@media(max - width:900px) {
                        .product-grid {
                            grid-template-columns: repeat(2,1fr)
                        }
                    }
                    @@media(max - width:600px) {
                        .featured-products {
                            padding: 55px 20px
                        }

                        .product-grid {
                            grid-template-columns: 1fr
                        }

                        .featured-head h2 {
                            font-size: 30px
                        }

                        .image-box {
                            height: 265px
                        }
                    }
