 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 40px 0;
            margin-bottom: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        }
        
        .header-content {
            text-align: center;
        }
        
        .avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #4a6fa5 0%, #2e4a7a 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(46, 74, 122, 0.2);
        }
        
        h1 {
            color: #2e4a7a;
            margin-bottom: 10px;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .subtitle {
            color: #4a6fa5;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .info {
            margin: 15px 0;
            color: #5a7a9c;
            font-size: 1.1rem;
        }
        
        .section {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        }
        
        h2 {
            color: #2e4a7a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(74, 111, 165, 0.2);
        }
        
        .project {
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .project:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(46, 74, 122, 0.15);
            border-color: rgba(74, 111, 165, 0.3);
        }
        
        .project h3 {
            color: #2e4a7a;
            margin-bottom: 8px;
            font-size: 1.3rem;
        }
        
        .project p {
            color: #5a7a9c;
            margin-bottom: 10px;
        }
        
        .project a {
            color: #4a6fa5;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 10px;
            border-radius: 6px;
            background: rgba(74, 111, 165, 0.1);
        }
        
        .project a:hover {
            color: #2e4a7a;
            background: rgba(74, 111, 165, 0.2);
            text-decoration: underline;
        }
        
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        
        .skill {
            background: rgba(74, 111, 165, 0.15);
            color: #2e4a7a;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(74, 111, 165, 0.2);
            transition: all 0.3s ease;
        }
        
        .skill:hover {
            background: rgba(74, 111, 165, 0.25);
            transform: translateY(-2px);
        }
        
        .contact {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact a {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #4a6fa5 0%, #2e4a7a 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(46, 74, 122, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .contact a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(46, 74, 122, 0.3);
            background: linear-gradient(135deg, #5a7fb5 0%, #3e5a8a 100%);
        }
        
        .stats {
            text-align: center;
            margin-top: 30px;
        }
        
        .stats img {
            max-width: 100%;
            height: auto;
            margin: 10px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .section {
                padding: 20px;
            }
            
            .contact {
                flex-direction: column;
                align-items: center;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

       