
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #000000;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            padding: 60px 30px;
            text-align: center;
            color: #ffffff;
            border-radius: 12px;
            margin-bottom: 50px;
            box-shadow: 0 8px 30px rgba(34, 55, 119, 0.3);
        }
        
        .hero-section h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .hero-section .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Content Section */
        .content-section {
            background: #ffffff;
            padding: 50px 40px;
            margin-bottom: 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 35px rgba(34, 55, 119, 0.15);
        }
        
        .content-section h2 {
            color: #223777;
            font-size: 2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #223777;
            font-weight: 700;
        }
        
        .content-section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #000000;
            text-align: justify;
        }
        
        .content-section a {
            color: #223777;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .content-section a:hover {
            color: #2d4a9e;
            border-bottom: 2px solid #2d4a9e;
        }
        
        /* Featured Image Section */
        .featured-image-section {
            margin: 50px 0;
            text-align: center;
        }
        
        .featured-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .featured-image-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(34, 55, 119, 0.25);
        }
        
        .featured-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-caption {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #ffffff;
            padding: 20px;
            font-size: 1.1em;
            text-align: center;
            font-weight: 600;
        }
        
        /* Service Grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 35px;
            border-radius: 10px;
            border-left: 5px solid #223777;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #ffffff;
            transform: translateX(10px);
        }
        
        .service-card h3 {
            color: #223777;
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: #ffffff;
        }
        
        .service-card p {
            font-size: 1em;
            line-height: 1.7;
        }
        
        /* Testimonial Box */
        .testimonial-box {
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #ffffff;
            padding: 50px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            box-shadow: 0 8px 30px rgba(34, 55, 119, 0.3);
        }
        
        .testimonial-box::before {
            content: '"';
            font-size: 5em;
            position: absolute;
            top: 10px;
            left: 30px;
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-box blockquote {
            font-size: 1.3em;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-size: 1.1em;
            font-weight: 700;
            margin-top: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #223777 100%);
            color: #ffffff;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        
        .cta-section h2 {
            color: #ffffff;
            font-size: 2.2em;
            margin-bottom: 20px;
            border: none;
            padding-bottom: 0;
        }
        
        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 35px;
            color: #ffffff;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .contact-card h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .contact-card a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 600;
            display: inline-block;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .contact-card a:hover {
            background: #ffffff;
            color: #223777;
            transform: scale(1.05);
        }
        
        /* Consultation Banner */
        .consultation-banner {
            background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px;
            border-radius: 10px;
            border: 3px solid #223777;
            margin: 40px 0;
            text-align: center;
        }
        
        .consultation-banner h3 {
            color: #223777;
            font-size: 1.8em;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .consultation-banner p {
            font-size: 1.1em;
            margin-bottom: 25px;
            color: #000000;
        }
        
        .consultation-contact {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .consultation-contact a {
            color: #ffffff;
            background: #223777;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1em;
            transition: all 0.3s ease;
        }
        
        .consultation-contact a:hover {
            background: #000000;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(34, 55, 119, 0.4);
        }
        
        /* Product Link Highlight */
        .product-link {
            display: inline-block;
            background: linear-gradient(135deg, #223777 0%, #2d4a9e 100%);
            color: #ffffff !important;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none !important;
        }
        
        .product-link:hover {
            background: linear-gradient(135deg, #000000 0%, #223777 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 55, 119, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8em;
            }
            
            .hero-section .subtitle {
                font-size: 1em;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .content-section h2 {
                font-size: 1.6em;
            }
            
            .service-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 25px;
            }
            
            .testimonial-box {
                padding: 35px 25px;
            }
            
            .testimonial-box blockquote {
                font-size: 1.1em;
            }
            
            .cta-section {
                padding: 40px 25px;
            }
            
            .consultation-contact {
                flex-direction: column;
                gap: 15px;
            }
            
            .consultation-contact a {
                display: block;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .content-section p {
                font-size: 1em;
            }
        }
    