 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            color: #1a1a1a;
            background: #f5f7fa;
        }
        
        .container {
            max-width: 210mm;
            margin: 20px auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 12px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 40% 60%;
            min-height: 297mm;
        }
        
        .sidebar {
            background: linear-gradient(135deg, #553c9a 0%, #2d1b69 100%);
            color: #f7fafc;
            padding: 50px 35px;
            position: relative;
        }
        
        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
        }
        
        .main-content {
            padding: 50px 40px;
            background: #ffffff;
        }
        
        .profile-section {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .profile-initial {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0 auto 20px;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }
        
        .name {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #f7fafc;
        }
        
        .title {
            font-size: 16px;
            font-weight: 400;
            color: #a0aec0;
            letter-spacing: 0.5px;
        }
        
        .contact-section {
            margin-bottom: 35px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 14px;
            font-size: 14px;
            color: #e2e8f0;
            transition: color 0.3s ease;
        }
        
        .contact-item:hover {
            color: #8b5cf6;
        }
        
        .contact-icon {
            width: 18px;
            height: 18px;
            margin-right: 12px;
            color: #8b5cf6;
            font-size: 16px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f7fafc;
            position: relative;
            padding-left: 20px;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            border-radius: 2px;
        }
        
        .main-section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2d3748;
            position: relative;
            padding-bottom: 15px;
        }
        
        .main-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #7c3aed);
            border-radius: 2px;
        }
        
        .skills-grid {
            display: grid;
            gap: 16px;
        }
        
        .skill-item {
            background: rgba(255,255,255,0.05);
            padding: 12px 16px;
            border-radius: 8px;
            border-left: 4px solid #8b5cf6;
            transition: all 0.3s ease;
        }
        
        .skill-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        
        .skill-name {
            font-size: 14px;
            font-weight: 500;
            color: #f7fafc;
            margin-bottom: 6px;
        }
        
        .skill-level {
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #7c3aed);
            border-radius: 2px;
            transition: width 0.5s ease;
        }
        
        .languages-grid {
            display: grid;
            gap: 12px;
        }
        
        .language-item {
            background: rgba(255,255,255,0.05);
            padding: 12px 16px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .language-name {
            font-weight: 500;
            color: #f7fafc;
        }
        
        .language-level {
            font-size: 12px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-weight: 500;
        }
        
        .methodologies-list {
            list-style: none;
        }
        
        .methodologies-list li {
            padding: 8px 0;
            color: #e2e8f0;
            font-size: 14px;
            position: relative;
            padding-left: 20px;
        }
        
        .methodologies-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #8b5cf6;
            font-size: 10px;
        }
        
        .intro-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 30px;
            border-radius: 16px;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .intro-title {
            color: #2d3748;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .intro-skills {
            color: #8b5cf6;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .intro-description {
            color: #4a5568;
            line-height: 1.7;
            font-size: 15px;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 35px;
            padding-bottom: 25px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 12px;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.3), transparent);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .timeline-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .timeline-title {
            font-size: 20px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 4px;
        }
        
        .timeline-company {
            font-size: 16px;
            color: #8b5cf6;
            font-weight: 500;
        }
        
        .timeline-date {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .timeline-description {
            color: #4a5568;
            line-height: 1.7;
            margin-top: 10px;
        }
        
        .project-card {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #7c3aed, #9333ea);
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: #8b5cf6;
        }
        
        .project-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        .project-tags {
            margin-bottom: 15px;
        }
        
        .tag {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 6px;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
        }
        
        .project-description {
            color: #4a5568;
            line-height: 1.7;
        }
        
        .additional-skills {
            margin-top: 25px;
        }
        
        .skill-category {
            background: rgba(255,255,255,0.05);
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-left: 4px solid #9333ea;
        }
        
        .skill-category-title {
            font-size: 14px;
            font-weight: 600;
            color: #f7fafc;
            margin-bottom: 6px;
        }
        
        .skill-category-content {
            font-size: 13px;
            color: #cbd5e0;
            line-height: 1.5;
        }
        
        .download-button {
            position: fixed;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .download-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
        }
        
        @media print {
            body { 
                background: white; 
                font-size: 12px;
            }
            .container { 
                box-shadow: none; 
                margin: 0; 
                max-width: none;
                min-height: auto;
                border-radius: 0;
            }
            .download-button {
                display: none;
            }
            .project-card:hover,
            .skill-item:hover {
                transform: none;
            }
        }