
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .article-header {
            background: linear-gradient(135deg, #223777 0%, #2c4a94 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .article-header h1 {
            font-size: 2.8em;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .article-header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-section {
            background: white;
            margin: 30px 0;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .section-title {
            color: #223777;
            font-size: 2.2em;
            font-weight: bold;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #223777, #4a69bd);
            border-radius: 2px;
        }

        .section-content {
            font-size: 1.1em;
            line-height: 1.8;
            color: #444;
        }

        .section-content p {
            margin-bottom: 20px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f1f4ff 0%, #e8f0ff 100%);
            border-left: 5px solid #223777;
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
            position: relative;
        }

        .highlight-box::before {
            content: '💡';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5em;
        }

        .image-showcase {
            text-align: center;
            margin: 40px 0;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .showcase-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .showcase-image:hover {
            transform: scale(1.02);
        }

        .image-caption {
            margin-top: 20px;
            font-size: 1.1em;
            color: #223777;
            font-weight: 600;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            display: inline-block;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #223777, #4a69bd);
            transition: left 0.3s ease;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(34, 55, 119, 0.15);
            border-color: #223777;
        }

        .service-icon {
            font-size: 3em;
            color: #223777;
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #223777;
            margin-bottom: 15px;
        }

        .contact-cta {
            background: linear-gradient(135deg, #223777 0%, #2c4a94 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            border-radius: 12px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-title {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta-subtitle {
            font-size: 1.3em;
            margin-bottom: 30px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: white;
            color: #223777;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-btn:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
        }

        .contact-btn i {
            font-size: 1.2em;
        }

        .inline-contact {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            border: 2px solid #223777;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }

        .inline-contact h3 {
            color: #223777;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .inline-contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .inline-contact-links a {
            color: #223777;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
            background: white;
            transition: all 0.3s ease;
            border: 1px solid #223777;
        }

        .inline-contact-links a:hover {
            background: #223777;
            color: white;
        }

        .testimonial {
            background: linear-gradient(135deg, #fff7e6 0%, #fff1d9 100%);
            border-left: 5px solid #f39c12;
            padding: 30px;
            margin: 30px 0;
            border-radius: 8px;
            font-style: italic;
            font-size: 1.15em;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            font-size: 4em;
            color: #f39c12;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-content {
            margin-left: 40px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .article-header {
                padding: 40px 25px;
            }

            .article-header h1 {
                font-size: 2.2em;
            }

            .article-header .subtitle {
                font-size: 1.1em;
            }

            .content-section {
                padding: 25px;
            }

            .section-title {
                font-size: 1.8em;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 250px;
                justify-content: center;
            }

            .inline-contact-links {
                flex-direction: column;
            }

            .cta-title {
                font-size: 2em;
            }

            .cta-subtitle {
                font-size: 1.1em;
            }
        }

        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8em;
            }

            .section-title {
                font-size: 1.5em;
            }

            .content-section {
                padding: 20px;
            }
        }

        /* Font Awesome Icons */
        .fa {
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
        }
    