
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero-section .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Content Section */
        .content-section {
            background: #ffffff;
            padding: 50px 0;
        }

        .section-title {
            color: #223777;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #223777;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #000000;
            margin-bottom: 40px;
            text-align: justify;
        }

        .intro-text strong {
            color: #223777;
            font-weight: 600;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .gallery-item {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(34, 55, 119, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(34, 55, 119, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            padding: 20px;
            background: #f8f9fa;
            text-align: center;
            color: #223777;
            font-weight: 600;
            font-size: 1rem;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Process */
        .service-process {
            background: #f8f9fa;
            padding: 50px 20px;
            margin: 50px 0;
            border-radius: 12px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .process-item {
            background: #ffffff;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid #223777;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .process-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(34, 55, 119, 0.15);
        }

        .process-item h3 {
            color: #223777;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .process-item p {
            color: #000000;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* One-Stop Service */
        .one-stop-service {
            margin: 50px 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .service-card {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #ffffff;
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(34, 55, 119, 0.2);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(34, 55, 119, 0.35);
        }

        .service-card h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Client Feedback */
        .client-feedback {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 50px 30px;
            margin: 50px 0;
            border-radius: 12px;
            border: 2px solid #223777;
            position: relative;
        }

        .feedback-icon {
            font-size: 3rem;
            color: #223777;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
        }

        .feedback-content {
            position: relative;
            z-index: 1;
        }

        .feedback-content h3 {
            color: #223777;
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 700;
        }

        .feedback-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #000000;
            text-align: center;
            font-style: italic;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: #ffffff;
            padding: 50px 30px;
            margin: 50px 0;
            border-radius: 12px;
            text-align: center;
        }

        .contact-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-cta p {
            font-size: 1.15rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 35px;
            background: #ffffff;
            color: #223777;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            background: #f8f9fa;
        }

        .contact-btn svg {
            width: 24px;
            height: 24px;
            fill: #223777;
        }

        /* Inline CTA */
        .inline-cta {
            background: #f8f9fa;
            border-left: 5px solid #223777;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 8px;
        }

        .inline-cta p {
            color: #223777;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .inline-cta-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .inline-cta-links a {
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .inline-cta-links a:hover {
            color: #223777;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section .subtitle {
                font-size: 1rem;
            }

            .image-gallery {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 40px 15px;
            }

            .hero-section h1 {
                font-size: 1.6rem;
            }

            .container {
                padding: 0 15px;
            }

            .gallery-item img {
                height: 220px;
            }

            .inline-cta-links {
                flex-direction: column;
                gap: 12px;
            }
        }
    