        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #f8fafc;
            font-size: 14px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 80px;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .header-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: center;
        }

        .profile-section {
            text-align: center;
        }

        .profile-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .profile-img:hover {
            transform: scale(1.05);
        }

        .name {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.025em;
        }

        .title {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            font-size: 0.9rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .contact-icon {
            font-size: 1rem;
            opacity: 0.8;
            min-width: 18px;
        }

        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 0;
        }

        .left-column {
            padding: 50px 60px 50px 80px;
        }

        .right-column {
            background: #f8fafc;
            padding: 50px 80px 50px 60px;
            border-left: 1px solid #e2e8f0;
        }

        .section {
            margin-bottom: 50px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 8px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #667eea;
        }

        .personal-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .info-label {
            font-weight: 500;
            color: #4a5568;
        }

        .info-value {
            font-weight: 400;
            color: #2d3748;
            text-align: right;
        }

        .summary {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
            text-align: justify;
        }

        .experience-item, .education-item, .project-item {
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e2e8f0;
        }

        .experience-item:last-child, .education-item:last-child, .project-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .item-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            line-height: 1.3;
        }

        .item-duration {
            font-size: 0.9rem;
            color: #718096;
            font-weight: 500;
            white-space: nowrap;
            background: #edf2f7;
            padding: 4px 12px;
            border-radius: 12px;
        }

        .item-company, .item-school {
            font-size: 1rem;
            color: #667eea;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .item-location {
            font-size: 0.9rem;
            color: #718096;
            margin-bottom: 12px;
        }

        .item-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .achievements {
            list-style: none;
            margin-top: 12px;
        }

        .achievements li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 6px;
            color: #4a5568;
            line-height: 1.5;
        }

        .achievements li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .skills-grid {
            display: grid;
            gap: 24px;
        }

        .skill-category {
            margin-bottom: 24px;
        }

        .skill-category:last-child {
            margin-bottom: 0;
        }

        .skill-category h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 12px;
        }

        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-item {
            background: white;
            border: 1px solid #e2e8f0;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: #4a5568;
            transition: all 0.2s ease;
            cursor: default;
        }

        .skill-item:hover {
            border-color: #667eea;
            background: #f7fafc;
            transform: translateY(-1px);
        }

        .languages {
            margin-bottom: 32px;
        }

        .language-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding: 12px 16px;
            background: white;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .language-name {
            font-weight: 500;
            color: #2d3748;
        }

        .language-level {
            font-size: 0.85rem;
            color: #667eea;
            font-weight: 500;
        }

        .certifications {
            margin-bottom: 32px;
        }

        .cert-item {
            margin-bottom: 16px;
            padding: 16px;
            background: white;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .cert-name {
            font-weight: 500;
            color: #2d3748;
            margin-bottom: 4px;
        }

        .cert-issuer {
            font-size: 0.9rem;
            color: #667eea;
            margin-bottom: 4px;
        }

        .cert-date {
            font-size: 0.85rem;
            color: #718096;
        }

        .interests {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .interest-item {
            background: #667eea;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .interest-item:hover {
            background: #5a67d8;
            transform: translateY(-1px);
        }

        .gpa {
            display: inline-block;
            background: #48bb78;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-left: 8px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .tech-item {
            background: #e6fffa;
            color: #234e52;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            border: 1px solid #b2f5ea;
        }

        .status-good {
            color: #38a169;
            font-weight: 500;
        }

        .status-neutral {
            color: #718096;
        }

        @media (max-width: 768px) {
            .header {
                padding: 40px 30px;
            }
            
            .header-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .left-column, .right-column {
                padding: 40px 30px;
            }
            
            .right-column {
                border-left: none;
                border-top: 1px solid #e2e8f0;
            }
            
            .name {
                font-size: 2.2rem;
            }
            
            .item-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .personal-info-grid {
                grid-template-columns: 1fr;
            }
        }

        .print-only {
            display: none;
        }

        @media print {
            .print-only {
                display: block;
            }
            
            body {
                font-size: 12px;
                background: white;
            }
            
            .container {
                box-shadow: none;
                max-width: none;
            }
            
            .header {
                background: #667eea !important;
            }
            
            .section {
                margin-bottom: 30px;
            }
            
            .experience-item, .education-item, .project-item {
                margin-bottom: 20px;
                break-inside: avoid;
            }
        }