
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .article-header {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #fff;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 50px;
        }

        .article-header h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        .article-header .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .article-header .meta {
            margin-top: 25px;
            font-size: 0.95em;
            opacity: 0.85;
        }

        /* Main Content Area */
        .article-content {
            background: #fff;
            padding: 50px 40px;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }

        .section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 1.8em;
            color: #223777;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #223777;
            font-weight: 600;
        }

        .section-content {
            font-size: 1.1em;
            line-height: 1.9;
            color: #444;
        }

        .section-content p {
            margin-bottom: 20px;
        }

        .highlight-box {
            background: #f0f4ff;
            border-left: 4px solid #223777;
            padding: 25px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .highlight-box h3 {
            color: #223777;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .highlight-box ul {
            list-style: none;
            padding-left: 0;
        }

        .highlight-box ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05em;
        }

        .highlight-box ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #223777;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .image-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(34,55,119,0.2);
        }

        .image-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .image-caption {
            padding: 20px;
            background: #fff;
            text-align: center;
            color: #223777;
            font-weight: 500;
            font-size: 1.05em;
        }

        /* CTA Contact Section */
        .cta-section {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #fff;
            padding: 50px 40px;
            border-radius: 8px;
            text-align: center;
            margin: 50px 0;
        }

        .cta-section h2 {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.15em;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #223777;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: #000;
            color: #fff;
        }

        .contact-button svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        /* Inline CTA Box */
        .inline-cta {
            background: #fff9e6;
            border: 2px solid #223777;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
        }

        .inline-cta h3 {
            color: #223777;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .inline-cta p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #555;
        }

        .inline-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .inline-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #223777;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .inline-cta-button:hover {
            background: #000;
            transform: scale(1.05);
        }

        .inline-cta-button svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* Customer Feedback Card */
        .feedback-card {
            background: linear-gradient(to right, #f8f9fa, #fff);
            border-left: 5px solid #223777;
            padding: 30px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .feedback-card .quote-icon {
            font-size: 3em;
            color: #223777;
            opacity: 0.3;
            line-height: 0.5;
        }

        .feedback-card p {
            font-size: 1.15em;
            font-style: italic;
            color: #333;
            margin: 20px 0;
        }

        .feedback-card .author {
            text-align: right;
            font-weight: 600;
            color: #223777;
            margin-top: 15px;
        }

        /* Service Timeline */
        .timeline {
            position: relative;
            padding: 30px 0;
            margin: 40px 0;
        }

        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 35px;
        }

        .timeline-item:before {
            content: "";
            position: absolute;
            left: 15px;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #223777;
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px #223777;
        }

        .timeline-item:after {
            content: "";
            position: absolute;
            left: 22px;
            top: 24px;
            width: 2px;
            height: calc(100% + 20px);
            background: #ddd;
        }

        .timeline-item:last-child:after {
            display: none;
        }

        .timeline-item h4 {
            color: #223777;
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .timeline-item p {
            color: #555;
            font-size: 1.05em;
        }

        /* Service Features Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .service-card {
            background: #fff;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: #223777;
            box-shadow: 0 5px 20px rgba(34,55,119,0.15);
            transform: translateY(-5px);
        }

        .service-card h4 {
            color: #223777;
            font-size: 1.2em;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 1.8em;
            }

            .article-header .subtitle {
                font-size: 1em;
            }

            .article-content {
                padding: 30px 20px;
            }

            .section-title {
                font-size: 1.5em;
            }

            .section-content {
                font-size: 1em;
            }

            .image-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .image-item img {
                height: 220px;
            }

            .contact-methods {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-button {
                justify-content: center;
                width: 100%;
            }

            .cta-section {
                padding: 35px 25px;
            }

            .cta-section h2 {
                font-size: 1.6em;
            }

            .timeline-item {
                padding-left: 40px;
            }

            .inline-cta-buttons {
                flex-direction: column;
            }

            .inline-cta-button {
                justify-content: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .article-header {
                padding: 40px 15px;
            }

            .article-header h1 {
                font-size: 1.5em;
            }

            .section-title {
                font-size: 1.3em;
            }

            .contact-button {
                padding: 15px 25px;
                font-size: 1em;
            }
        }
    