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

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 60px;
            background: #fff;
            border: 1px solid #eee;
        }

        .price-table th,
        .price-table td {
            padding: 16px;
            border-bottom: 1px solid #eee;
            text-align: left;
        }

        .price-table th {
            background: #f9f9f9;
            font-weight: 700;
            width: 40%;
        }

        /* CTA Section styles removed (using global styles) */

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