  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }
        
         .header {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            opacity: 0.8;
        }
        .nav-menu a.active {
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        
        .hero-text h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #1e293b;
        }
        
        .hero-text .highlight {
            color: #8b5cf6;
        }
        
        .hero-text p {
            font-size: 1.125rem;
            color: #64748b;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: #475569;
            border: 2px solid #e2e8f0;
        }
        
        .btn-secondary:hover {
            border-color: #8b5cf6;
            color: #8b5cf6;
        }
        
        .hero-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .status-badge {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            background: rgba(16, 185, 129, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
        }
        
        .status-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .experience-section {
            margin-top: 3rem;
        }
        
        .section-header {
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        
        .section-header p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 700px;
        }
        
        .experience-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .experience-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            gap: 2rem;
        }
        
        .experience-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .experience-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 16px rgba(139, 92, 246, 0.25);
        }
        
        .experience-icon::after {
            content: "💼";
            font-size: 28px;
        }
        
        .experience-content {
            flex: 1;
        }
        
        .experience-header {
            margin-bottom: 1rem;
        }
        
        .job-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }
        
        .company-info {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .job-description {
            margin-bottom: 1.5rem;
            color: #475569;
        }
        
        .responsibilities {
            margin-bottom: 1.5rem;
        }
        
        .responsibilities h4 {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #1e293b;
        }
        
        .responsibilities ul {
            list-style: none;
            padding-left: 0;
        }
        
        .responsibilities li {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .responsibilities li::before {
            content: "•";
            color: #8b5cf6;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            background: #f1f5f9;
            color: #475569;
            padding: 0.375rem 0.875rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1e293b, #334155);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            color: white;
            margin-top: 3rem;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-buttons .btn-primary {
            background: white;
            color: #1e293b;
        }
        
        .cta-buttons .btn-primary:hover {
            background: #f8fafc;
        }
        
        .cta-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cta-buttons .btn-secondary:hover {
            background: white;
            color: #1e293b;
            border-color: white;
        }
        
        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-text h1 {
                font-size: 2.75rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-content {
                padding: 2rem 1rem;
            }
            
            .experience-card {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .nav-menu {
                display: none;
            }
        }