* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 11pt;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }
        
        .pdf-document {
            max-width: 21cm;
            margin: 0 auto;
            padding: 1cm;
        }
        
        .pdf-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #007bff;
        }
        
        .pdf-header-title {
            font-size: 24pt;
            font-weight: bold;
            color: #007bff;
            margin-bottom: 10px;
        }
        
        .pdf-header-subtitle {
            font-size: 14pt;
            color: #666;
        }
        
        .pdf-section {
            margin-bottom: 25px;
            page-break-inside: avoid;
        }
        
        .pdf-section-header {
            font-size: 14pt;
            font-weight: bold;
            color: #007bff;
            padding: 10px 15px;
            background: #f0f8ff;
            border-left: 4px solid #007bff;
            margin-bottom: 15px;
        }
        
        .pdf-section-content {
            padding: 0 15px;
        }
        
        .pdf-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .pdf-row {
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
        }
        
        .pdf-label {
            font-weight: bold;
            color: #555;
            min-width: 150px;
        }
        
        .pdf-value {
            color: #333;
            flex: 1;
        }
        
        .pdf-address {
            line-height: 1.5;
        }
        
        .pdf-skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .pdf-skill-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #e3f2fd;
            color: #1976d2;
            border-radius: 4px;
            font-size: 10pt;
        }
        
        .pdf-soft-skill-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #f3e5f5;
            color: #7b1fa2;
            border-radius: 4px;
            font-size: 10pt;
        }
        
        .pdf-status-badge {
            display: inline-block;
            padding: 5px 15px;
            background: #28a745;
            color: white;
            border-radius: 20px;
            font-size: 10pt;
            font-weight: bold;
        }
        
        .pdf-highlight {
            padding: 15px;
            background: #fffbf0;
            border-left: 4px solid #ffc107;
            font-style: italic;
            line-height: 1.7;
        }
        
        .pdf-score {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .pdf-score-value {
            font-size: 16pt;
            font-weight: bold;
            color: #007bff;
        }
        
        .pdf-stars {
            color: #ffc107;
            font-size: 14pt;
        }
        
        .pdf-metadata {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #ddd;
            text-align: center;
            font-size: 9pt;
            color: #999;
        }
        
        .pdf-metadata-title {
            font-weight: bold;
            color: #666;
            margin-bottom: 5px;
        }
        
        em {
            color: #999;
        }
