        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: #525659; 
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        
        .page {
    background: white;
    width: 210mm;
    min-height: 297mm;
    padding: 8mm 15mm;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    gap: 15px;
    color: #333;
}

        
        .left-col {
            flex: 6.5; 
        }
        
        .right-col {
            flex: 3.5; 
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        
        h1 {
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
        }
        .subtitle {
            font-size: 16px;
            color: #007bff; 
            font-weight: 600;
            margin-bottom: 10px;
        }
        .contact-info {
            font-size: 10px;
            display: flex;
            flex-direction: column; 
            gap: 8px; 
            margin-bottom: 25px;
        }
        .contact-info a {
            color: #555; 
            text-decoration: none; 
            display: flex;
            align-items: center;
        }
        .contact-info a:hover {
            color: #000; 
        }

        
        .section-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            border-top: 2px solid #000;
            padding-top: 5px;
            margin-bottom: 12px;
            margin-top: 20px;
            color: #000;
        }

        
        .item { margin-bottom: 15px; }
        .item-title { font-weight: 600; font-size: 13px; color: #000; }
        .item-subtitle { font-size: 12px; color: #007bff; font-weight: 500; }
        .item-date { font-size: 10.5px; color: #666; margin-bottom: 4px; }
        
        ul { padding-left: 15px; font-size: 11px; line-height: 1.4; color: #444; }
        li { margin-bottom: 3px; }

        p { font-size: 11px; line-height: 1.5; color: #444; }

    
        .links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            font-size: 11px;
        }
        .link-item strong { display: block; color: #000; }
        .link-item a { color: #666; text-decoration: none; font-size: 10px; word-break: break-all; }

        
        .photo-container {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 10px auto;
            border: 1px solid #eee;
        }
        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        
        .language-item {
            margin-bottom: 8px;
            font-size: 11px;
        }
        .language-name { font-weight: 600; color: #000; margin-bottom: 2px;}
        .language-level { color: #666; font-size: 10px; display: flex; justify-content: space-between; align-items: center;}
        .dots { color: #ccc; font-size: 14px; letter-spacing: 2px; }
        .dots .active { color: #007bff; }

        
        .skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 11px;
        }
        .skill-badge {
            padding: 4px 0;
            border-bottom: 1px solid #ddd;
            width: 100%;
            color: #333;
            font-weight: 500;
        }

        
        @media print {
            body { background: none; padding: 0; }
            .page { box-shadow: none; width: 100%; height: 100%; }
        }
