:root {
            --primary-color: #0d6efd;
            --secondary-color: #212529;
            --accent-color: #20c997;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .cv-container {
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
            max-width: 1000px;
            margin: 2rem auto;
        }
        
        .cv-header {
            background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
            color: white;
            padding: 2rem;
        }
        
        .cv-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .cv-title {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }
        
        .cv-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .cv-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cv-section {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #eee;
        }
        
        .cv-section-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .cv-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .cv-experience-item, .cv-education-item {
            margin-bottom: 1.5rem;
        }
        
        .cv-item-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .cv-item-subtitle {
            color: #666;
            margin-bottom: 0.5rem;
        }
        
        .cv-item-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .cv-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .cv-skill {
            background-color: var(--light-bg);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .cv-languages, .cv-interests {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .cv-language, .cv-interest {
            background-color: var(--light-bg);
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        
        .print-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        @media print {
            .print-btn {
                display: none;
            }
            
            body {
                background: white;
            }
            
            .cv-container {
                box-shadow: none;
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .cv-header {
                text-align: center;
            }
            
            .cv-contact {
                justify-content: center;
            }
            
            .cv-name {
                font-size: 2rem;
            }
        }