
     {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        section {
            padding: 60px 0;
        }
        
        h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #444;
        }
        
        h3 {
            margin-bottom: 20px;
            color: #6e8efb;
        }
        
        /* Стили для секции навыков */
        .skills {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: -40px;
        }
        
        .skill-category {
            margin-bottom: 30px;
        }
        
        .skill-item {
            background-color: #f8f9fa;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 4px solid #a777e3;
            transition: transform 0.3s ease;
        }
        
        .skill-item:hover {
            transform: translateX(5px);
        }
        
        /* Стили для секции "Обо мне" */
        .about {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin: 40px 0;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .profile-img {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .profile-img img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Стили для секции проектов */
        .projects {
            background-color: #f0f2f5;
            padding: 60px 0;
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .project-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-img {
            height: 200px;
            background-color: #6e8efb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-content h3 {
            margin-bottom: 10px;
            color: #444;
        }
        
        /* Стили для секции контактов */
        .contact {
            padding: 60px 0;
            text-align: center;
        }
        
        .contact-info {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-item {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        footer {
            background-color: #343a40;
            color: white;
            text-align: center;
            padding: 30px 0;
        }
        
        @media (max-width: 768px) {
            .about {
                flex-direction: column;
            }
            
            .skills {
                padding: 20px;
            }
        }
