/* 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;
        }

        .service-detail-container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 24px;
        }

        .service-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .service-intro h2 {
            font-size: 1.8rem;
            margin-bottom: 24px;
        }

        .service-intro p {
            line-height: 1.8;
            color: #555;
        }

        .service-image-block {
            margin-bottom: 60px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-image-block img {
            width: 100%;
            height: auto;
            display: block;
        }

        .service-points {
            display: grid;
            gap: 40px;
            margin-bottom: 80px;
        }

        .point-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .point-icon {
            width: 50px;
            height: 50px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            color: #C5A065;
        }

        .point-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .point-content p {
            line-height: 1.6;
            color: #666;
        }

        /* Tech Tags */
        .tech-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 24px;
        }

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

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Pricing Box */
        .price-policy-box {
            background: #f8f9fa;
            padding: 60px;
            border-radius: 16px;
            text-align: center;
            border-left: 5px solid #C5A065;
            margin-top: 60px;
        }

        .price-policy-box h3 {
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .price-policy-box p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }

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

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

        @media (max-width: 768px) {
            .point-item {
                flex-direction: column;
            }

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

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

            .price-policy-box {
                padding: 40px 20px;
            }
        }