        * {
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        .price-card {
            max-width: 1200px;
            margin: 2rem auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
            overflow: hidden;
            border: 2px solid #ffd8c1;
        }

        .table-header {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 1rem;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8a4c 100%);
            border-bottom: 3px solid #ff5a1f;
        }

        .header-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-icon {
            width: 28px;
            height: 28px;
            fill: currentColor;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            padding: 1.5rem 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .service-row:nth-child(even) {
            background: #fffaf5;
        }

        .service-row:hover {
            background: #fff0e6;
            transform: translateX(8px);
        }

        .service-row::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #ffc7a8 50%, transparent 100%);
        }

        .service-name {
            color: #d15822;
            font-weight: 600;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }

        .service-name::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-size: 1.2em;
            transform: rotate(90deg);
            filter: drop-shadow(0 2px 2px rgba(255,107,53,0.3));
        }

        .service-description {
            color: #5f5f5f;
            line-height: 1.6;
            padding-right: 2rem;
            border-left: 2px solid #ffe0d0;
            padding-left: 2rem;
        }

        .service-price {
            color: #ff5a1f;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
        }

        .price-badge {
            background: linear-gradient(135deg, #ff8a4c 0%, #ff6b35 100%);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
            transition: transform 0.2s;
        }

        .price-badge:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .table-header {
                display: none;
            }

            .service-row {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.5rem;
                border-bottom: 2px solid #ffd8c1;
            }

            .service-name {
                padding-left: 0;
                font-size: 1.3rem;
            }

            .service-name::before {
                display: none;
            }

            .service-description {
                padding: 1rem 0;
                border-left: none;
                border-top: 2px solid #ffd8c1;
                padding-left: 0;
            }

            .service-price {
                justify-content: center;
                padding: 1rem;
                background: #fff1e6;
                border-radius: 12px;
                margin-top: 0.5rem;
            }

            .price-badge {
                width: 100%;
                justify-content: center;
            }