
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .photo {
            width: 140px;
            height: 170px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #555;
            flex-shrink: 0;
            background-color: #f0f0f0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .header-info {
            flex: 1;
        }

        .name {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .position {
            font-size: 18px;
            color: #3498db;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .contacts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .link {
            color: #3498db;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .link:hover {
            border-bottom-color: #3498db;
        }

        .link-pdf {
            color: #3498db;
            text-decoration: none;
        }

        .section {
            margin-bottom: 25px;
        }

        .section-title {
            font-size: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 10px;
        }

        .skill-category {
            margin-bottom: 10px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            
        }

        .skill-category h4 {
            color: #555;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: #e8f4fc;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 13px;
            border: 1px solid #3498db;
        }

        .experience-item {
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            
        }

        .company {
            font-weight: bold;
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .period {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .role {
            color: #3498db;
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .achievements {
            list-style: none;
            padding-left: 0;
        }

        .achievements li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .achievements li:before {
            content: "•";
            color: #3498db;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .education-item {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #3498db;
            margin-bottom: 15px;
        }

        .education-name {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .project-item {
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #3498db;
        }

        .project-title {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .project-tech {
            color: #666;
            font-size: 13px;
            margin-bottom: 8px;
            font-style: italic;
        }

        .project-description {
            font-size: 14px;
            line-height: 1.5;
        }

        .about-me {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #3498db;
            line-height: 1.6;
        }

        .about-me p {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }
            
            .photo {
                align-self: center;
            }
            
            .contacts {
                grid-template-columns: 1fr;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
        }
   .about-text {
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.2em;
    text-align: justify;
}

.highlight {
    background: linear-gradient(120deg, #e3f2fd 0%, #e3f2fd 100%);
    padding: 15px;
    border-left: 4px solid #2196f3;
    border-radius: 0 8px 8px 0;
    margin: 20px 0 !important;
}

.qualities-block {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.qualities-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px !important;
    font-size: 16px;
}

.qualities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quality-item {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .qualities-list {
        gap: 8px;
    }
    
    .quality-item {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .highlight {
        padding: 12px;
    }
}