* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .cv-container {
            width: 100%;
            max-width: 900px;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        
        header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding: 30px;
            border-bottom: 2px solid #333;
        }

        .header-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .header-info h1 {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .header-info h2 {
            font-size: 1.2rem;
            font-weight: normal;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 20px;
        }

        .header-info p {
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
        }

        .header-photo {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-photo img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
        }

        
        main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding: 30px;
        }

        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #333;
        }

        .section ul, .section ol {
            list-style-type: none;
            padding-left: 0;
        }

        .section li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
        }

        .section li:before {
            content: "•";
            position: absolute;
            left: 0;
        }

        
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        
        .edu-item {
            margin-bottom: 20px;
        }

        .edu-title {
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .edu2 {
            font-style: italic;
            margin-bottom: 5px;
        }

        .experience-period {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
        }

        
        .exp-item {
            margin-bottom: 20px;
        }

        .work {
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .education-institution {
            font-style: italic;
            margin-bottom: 5px;
        }

        .period {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
        }

        
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-item {
            background: #f0f0f0;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
        }

        
        footer {
            padding: 20px;
            text-align: center;
            border-top: 1px solid #ddd;
            font-size: 0.9rem;
            color: #666;
        }

        footer a {
            color: #0066cc;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }