      <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       

       
        .job-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px 0;
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
        }

        .header-1 {
            background: linear-gradient(135deg, #f8a056 0%, #ffdfc6 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .job-title-1 {
            color: #ffffff;
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .company-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            position: relative;
            z-index: 1;
        }

        .content {
            padding: 40px;
        }

        .overview {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #f3c53b;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 10px;
            font-size: 1.1em;
            font-style: italic;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-1 {
            margin-bottom: 35px;
        }

        .section-title-1 {
            font-size: 1.8em;
            color: #f8a056;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #eca649;
            position: relative;
            font-weight: 600;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #e74c3c;
        }

        .responsibility-item {
            font-size: 1.2em;
            background: #f8f9fa;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #e59928;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .responsibility-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, lch(70.02% 69.24 71.88), #e38913);
            transition: width 0.3s ease;
        }

        .responsibility-item:hover::before {
            width: 8px;
        }

        .responsibility-item:hover {
            background: #ffffff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .responsibility-title {
            font-size: 1.3em;
            font-weight: 500;
            color: #f8a056;
            margin-bottom: 10px;
        }

        .responsibility-item ul {
            list-style: none;
            padding-left: 0;
        }

        .responsibility-item li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .responsibility-item li::before {
            content: '�?;
            position: absolute;
            left: 0;
            color: #3498db;
            font-size: 0.8em;
        }

        .qualifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .qual-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .qual-card:hover {
            border-color: #f8cb71;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(239, 192, 117, 0.1);
        }

        .qual-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .qual-title::before {
            content: '🎯';
            margin-right: 10px;
            font-size: 1.2em;
        }

        .competencies {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .competency-tag {
            background: linear-gradient(135deg, #dcb390 0%, #e78114 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .competency-tag:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .apply-section {
            background: linear-gradient(135deg, #f8a056 0%, #ffdfc6 100%);
            color: white;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
            border-radius: 15px;
        }

        .apply-btn {
            background: white;
            color: #f8a056;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .job-title {
                font-size: 2em;
            }
            
            .content {
                padding: 20px;
            }
            
            .qualifications-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>