
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: #ffffff;
            padding: 60px 30px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(34, 55, 119, 0.3);
        }
        
        .hero-section h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .hero-section .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Content Section */
        .content-section {
            background: #ffffff;
            padding: 50px 40px;
            margin-bottom: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .content-section h2 {
            color: #223777;
            font-size: 2.2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #223777;
            font-weight: 700;
        }
        
        .content-section h3 {
            color: #223777;
            font-size: 1.6em;
            margin-top: 35px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .content-section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            text-align: justify;
            color: #444;
        }
        
        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .image-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(34, 55, 119, 0.3);
        }
        
        .image-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }
        
        .image-caption {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            color: #ffffff;
            padding: 20px 15px 15px 15px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            font-size: 0.95em;
            font-weight: 500;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
            border-left: 5px solid #223777;
            padding: 30px;
            margin: 35px 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(34, 55, 119, 0.1);
        }
        
        .highlight-box h3 {
            color: #223777;
            margin-top: 0;
        }
        
        .highlight-box ul {
            list-style: none;
            padding-left: 0;
        }
        
        .highlight-box ul li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05em;
            color: #333;
        }
        
        .highlight-box ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #223777;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        /* Contact CTA Inline */
        .inline-cta {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: #ffffff;
            padding: 35px;
            margin: 40px 0;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(34, 55, 119, 0.3);
        }
        
        .inline-cta h3 {
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.8em;
        }
        
        .inline-cta p {
            font-size: 1.1em;
            margin-bottom: 25px;
            color: #ffffff;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: #ffffff;
            color: #223777;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .contact-btn:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .contact-btn svg {
            width: 24px;
            height: 24px;
        }
        
        /* Testimonial Section */
        .testimonial {
            background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
            border-left: 5px solid #223777;
            padding: 35px;
            margin: 40px 0;
            border-radius: 10px;
            font-style: italic;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .testimonial p {
            font-size: 1.15em;
            color: #333;
            margin-bottom: 15px;
        }
        
        .testimonial .author {
            font-style: normal;
            font-weight: 600;
            color: #223777;
            text-align: right;
            margin-top: 20px;
            font-size: 1.1em;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        
        .service-card {
            background: #ffffff;
            border: 2px solid #e6eeff;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            border-color: #223777;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(34, 55, 119, 0.2);
        }
        
        .service-card h4 {
            color: #223777;
            margin-bottom: 15px;
            font-size: 1.3em;
            font-weight: 600;
        }
        
        .service-card p {
            color: #666;
            font-size: 1em;
            text-align: center;
        }
        
        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #223777 0%, #000000 100%);
            color: #ffffff;
            padding: 60px 40px;
            text-align: center;
            border-radius: 12px;
            margin-top: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .final-cta h2 {
            color: #ffffff;
            font-size: 2.5em;
            margin-bottom: 20px;
            border: none;
            padding: 0;
        }
        
        .final-cta p {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: #ffffff;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Keyword Links */
        .keyword-link {
            color: #223777;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .keyword-link:hover {
            border-bottom-color: #223777;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 20px;
            }
            
            .hero-section h1 {
                font-size: 2em;
            }
            
            .hero-section .subtitle {
                font-size: 1em;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .content-section h2 {
                font-size: 1.8em;
            }
            
            .content-section h3 {
                font-size: 1.4em;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .contact-btn {
                justify-content: center;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .final-cta h2 {
                font-size: 1.8em;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            .hero-section h1 {
                font-size: 1.6em;
            }
            
            .content-section h2 {
                font-size: 1.5em;
            }
            
            .inline-cta,
            .highlight-box,
            .testimonial {
                padding: 20px;
            }
        }
    