
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(34, 55, 119, 0.1);
        }
        
        .header {
            background: linear-gradient(135deg, #223777, #2a4587);
            color: white;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .header h1 {
            margin: 0;
            font-size: 2.5em;
            font-weight: bold;
        }
        
        .header p {
            margin: 10px 0 0 0;
            font-size: 1.2em;
            opacity: 0.9;
        }
        
        h2 {
            color: #223777;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: 3px solid #223777;
            padding-bottom: 10px;
        }
        
        h3 {
            color: #223777;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        
        .highlight {
            background-color: #f0f3ff;
            border-left: 4px solid #223777;
            padding: 15px;
            margin: 20px 0;
        }
        
        .image-container {
            text-align: center;
            margin: 25px 0;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.9em;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #223777, #2a4587);
            color: white;
            padding: 30px;
            text-align: center;
            margin: 30px 0;
            border-radius: 10px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background-color: white;
            color: #223777;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #f0f3ff;
            transform: translateY(-2px);
        }
        
        .strengths-list {
            background-color: #f0f7ff;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .strengths-list ul {
            list-style-type: none;
            padding: 0;
        }
        
        .strengths-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e0e6ff;
        }
        
        .strengths-list li:before {
            content: "✓";
            color: #223777;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .faq-section {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .faq-question {
            font-weight: bold;
            color: #223777;
            margin-bottom: 8px;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .service-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #223777;
        }
        
        .service-card h4 {
            color: #223777;
            margin-top: 0;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    