    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .cv-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
        }
        
        .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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }
        
        .name {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .title {
            font-size: 1.4em;
            opacity: 0.9;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 40px;
        }
        
        .section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 1.8em;
            font-weight: 600;
            color: #2c5aa0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e8f2ff;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #2c5aa0, #667eea);
            border-radius: 2px;
        }
        
        .about-text {
            font-size: 1.1em;
            line-height: 1.8;
            color: #555;
            background: #f8f9ff;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #2c5aa0;
        }
        
        .job {
            background: #fff;
            border: 1px solid #e8f2ff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .job:hover {
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
            transform: translateY(-2px);
        }
        
        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .job-title {
            font-size: 1.3em;
            font-weight: 600;
            color: #2c5aa0;
            margin-bottom: 5px;
        }
        
        .company {
            font-size: 1.1em;
            color: #666;
            font-weight: 500;
        }
        
        .duration {
            color: #888;
            font-style: italic;
            font-size: 0.95em;
            background: #f0f4ff;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }
        
        .job-description {
            color: #555;
            line-height: 1.7;
        }
        
        .job-description p {
            margin-bottom: 10px;
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .skill-category {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid #2c5aa0;
        }
        
        .skill-category h4 {
            color: #2c5aa0;
            font-size: 1.2em;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .skill-category p {
            color: #555;
            font-size: 1em;
            line-height: 1.6;
        }
        
        .education {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #e74c3c;
        }
        
        .education h4 {
            color: #e74c3c;
            font-size: 1.3em;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .education p {
            color: #666;
            font-size: 1.05em;
        }
        
        @media (max-width: 768px) {
            .cv-container {
                margin: 10px;
                border-radius: 10px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .name {
                font-size: 2.2em;
            }
            
            .title {
                font-size: 1.2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .job-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .duration {
                margin-top: 10px;
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
        }
    </style>