body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            min-height: 600px;
        }

        .left-panel {
            background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 40px 30px;
        }

        .profile {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: block;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .profile h1 {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .profile .title {
            font-size: 16px;
            color: #a8b2c1;
            font-weight: 300;
        }

        .section {
            margin-bottom: 35px;
        }

        .section h2 {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-content {
            font-size: 14px;
            line-height: 1.8;
            color: #e0e6ed;
        }

        .skill-item, .language-item {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .skill-item::before {
            content: "▹";
            margin-right: 10px;
            color: #667eea;
            font-size: 20px;
        }

        .language-item .lang-name {
            font-weight: 600;
            margin-right: 8px;
        }

        .language-item .lang-level {
            color: #a8b2c1;
            font-size: 13px;
        }

        .right-panel {
            padding: 40px;
            background: #f8f9fa;
        }

        .right-panel h2 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #667eea;
            display: inline-block;
        }

        .content-section {
            margin-bottom: 35px;
        }

        .content-section p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
        }

        .experience-item, .education-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #667eea;
        }

        .experience-item h3, .education-item h3 {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .experience-item .duration, .education-item .location {
            color: #888;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .highlight {
            color: #667eea;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }

            .left-panel {
                padding: 30px 20px;
            }

            .right-panel {
                padding: 30px 20px;
            }

            .profile-image {
                width: 120px;
                height: 120px;
                font-size: 50px;
            }
        }