/* Service Detail Page Styles */
        .page-header {
            background: #111;
            color: #fff;
            padding: 120px 0 60px;
            text-align: center;
        }

        .page-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .page-desc {
            color: #ccc;
            font-size: 1rem;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-center h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title-center h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #C5A065;
        }

        /* GWEAR Concept */
        .gwear-concept {
            background: #fff;
        }

        .concept-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .concept-text h3 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            color: #111;
        }

        .concept-text p {
            line-height: 2;
            color: #555;
            margin-bottom: 30px;
        }

        .tech-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .tech-tag {
            background: #f0f0f0;
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
        }

        .concept-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 24px;
            color: #C5A065;
        }

        .feature-card h4 {
            font-size: 1.25rem;
            margin-bottom: 16px;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* Grade Selection */
        .grade-section {
            background: #111;
            color: #fff;
        }

        .grade-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .grade-card {
            background: #222;
            border: 1px solid #333;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
        }

        .grade-card.recommended {
            border-color: #C5A065;
            background: #2a2a2a;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(197, 160, 101, 0.2);
        }

        .grade-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #C5A065;
        }

        .grade-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 30px;
        }

        .grade-features li {
            font-size: 0.85rem;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            color: #bbb;
        }

        .grade-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #C5A065;
        }

        /* Pricing Table */
        .pricing-table-container {
            overflow-x: auto;
            margin-top: 40px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            min-width: 800px;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 24px;
            border: 1px solid #eee;
            text-align: center;
        }

        .pricing-table th {
            background: #f8f9fa;
            font-weight: 700;
        }

        .pricing-table .grade-col {
            background: #f1f1f1;
            width: 200px;
        }

        .price-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .price-val.sub {
            font-size: 0.85rem;
            color: #888;
            font-weight: 400;
            margin-top: 4px;
        }

        .option-notes {
            margin-top: 24px;
            font-size: 0.85rem;
            color: #777;
            line-height: 1.6;
        }

        .option-notes .note-red {
            color: #c00;
        }

        /* CTA */
        /* CTA Section styles removed */

        @media (max-width: 1024px) {
            .grade-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .grade-card.recommended {
                transform: none;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .concept-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .grade-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }
        }
