        :root {
            --primary-color: #2d3748;
            --accent-color: #fbae3d;
            --text-color: #333;
            --background-color: #fff;
            --light-bg: #f7fafc;
            --border-color: #e2e8f0;
            --link-color: #3182ce;
            --muted-text: #718096;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            color: var(--text-color);
            background-color: var(--background-color);
        }
        
        .logo-placeholder {
            width: 350px;
            height: 156px;
            background-color: var(--light-bg);
            border: 2px dashed var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--muted-text);
            font-size: 14px;
            text-align: center;
        }
        
        h1 {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 2.5em;
            margin-top: 0;
        }
        
        h2 {
            color: var(--primary-color);
            margin-top: 40px;
            margin-bottom: 15px;
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
            font-size: 1.5em;
        }
        
        h3 {
            color: var(--primary-color);
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .contact-info {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        
        .contact-info p {
            margin: 5px 0;
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .section {
            margin-bottom: 25px;
        }
        
        .subsection {
            margin-bottom: 20px;
        }
        
        .institution {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .degree, .position, .award {
            font-weight: bold;
        }
        
        .year, .duration {
            color: var(--muted-text);
            font-style: italic;
        }
        
        .description {
            margin-top: 5px;
            color: var(--text-color);
        }
        
        a {
            color: var(--link-color);
            text-decoration: underline;
        }
        
        a:hover {
            color: var(--primary-color);
        }
        
        a:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }
        
        /* Utility classes */
        .hidden {
            display: none;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-right {
            text-align: right;
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --background-color: white;
                --text-color: black;
                --primary-color: black;
                --border-color: black;
            }
            
            .contact-info {
                background-color: white;
                border: 2px solid black;
            }
        }
        
        /* Print styles */
        @media print {
            body {
                font-size: 12pt;
                line-height: 1.4;
            }
            
            h1 {
                font-size: 18pt;
            }
            
            h2 {
                font-size: 14pt;
            }
            
            .contact-info {
                background-color: transparent;
                border: 1px solid black;
            }
            
            .logo-placeholder {
                display: none;
            }
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            body {
                padding: 15px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            .contact-info {
                padding: 15px;
            }
        }
    