 /* Services Page Styles */
        .services-hero {
            /* background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe5 100%); */
            padding: 60px 0 40px;
        }

        .services-hero h1 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 16px;
            line-height: 1.3;
            text-align: left;
        }

        .services-hero .subtitle {
            font-size: 14px;
            color: #888;
            margin-bottom: 8px;
            text-align: left;
            padding: 10px;
        }

        /* Our Service Section */
        .our-service {
            background: #f5f2ef;
            padding: 50px 0;
        }

        .our-service-header {
            text-align: left;
            margin-bottom: 40px;
        }

        .our-service-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            padding-left:10px;
        }

        .our-service-header p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            text-align: left;
            margin: 0 0 16px 0;
            padding:10px
        }

        .service-diagram-image {
            margin-top: 30px;
            text-align: center;
        }

        .service-diagram-image h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .service-diagram-image img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Service Diagram */
        .service-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 40px 0;
            position: relative;
        }

        .service-center {
            text-align: center;
        }

        .service-center h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .service-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .service-icon-item {
            text-align: center;
        }

        .service-icon-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 8px;
        }

        .service-icon-item span {
            display: block;
            font-size: 12px;
            color: #666;
        }

        /* Service Features */
        .service-features {
            background: #fff;
            padding: 50px 0;
        }

        .feature-item {
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .feature-bullet {
            width: 12px;
            height: 12px;
            background: #d4a574;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .feature-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
            padding-left: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 24px;
                padding: 0 20px;
            }

            .service-diagram {
                flex-direction: column;
                gap: 20px;
            }

            .service-icons {
                flex-wrap: wrap;
            }

            .feature-item {
                padding: 0 15px;
            }
        }