.works-section {
                            padding: 3rem 0;
                            background: #fff
                        }

                        .works-container {
                            max-width: 1400px;
                            margin: 0 auto;
                            padding: 0 1rem
                        }

                        .works-title {
                            font-size: clamp(4rem, 10vw, 8rem);
                            font-weight: 700;
                            color: #1a2b49;
                            text-align: center;
                            margin: 0 0 3rem;
                            line-height: 1.1
                        }

                        .works-subtitle {
                            font-size: clamp(2.2rem, 5vw, 3.5rem);
                            color: #6b7280;
                            text-align: center;
                            margin: 0 auto 4rem;
                            max-width: 1200px;
                            line-height: 1.3
                        }

                        .works-grid {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                            gap: 3rem
                        }

                        .step-card {
                            background: #f9fafb;
                            border-radius: 2rem;
                            padding: 3rem;
                            text-align: center
                        }

                        .step-circle {
                            background: #2563eb;
                            color: #fff;
                            width: 7rem;
                            height: 7rem;
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin: 0 auto 2rem;
                            font-size: 3.5rem;
                            font-weight: 700
                        }

                        .step-title {
                            font-size: clamp(2.5rem, 5vw, 3.5rem);
                            font-weight: 700;
                            color: #1a2b49;
                            margin: 0 0 2rem
                        }

                        .step-text {
                            font-size: clamp(1.8rem, 4vw, 2.5rem);
                            color: #6b7280;
                            line-height: 1.4;
                            margin: 0
                        }

                        .blue-text {
                            color: #2563eb
                        }

                        @media(max-width:768px) {
                            .works-section {
                                padding: 2rem 0
                            }

                            .step-card {
                                padding: 2rem
                            }

                            .step-circle {
                                width: 6rem;
                                height: 6rem;
                                font-size: 3rem
                            }
                        }
