* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif !important;
            background: #f5f7fa;
        }
        /* Tab Navigation */
        .tab-navigation {
            background: #ffffff;
            padding: 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .tab-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        .tab-btn {
            flex: 1;
            max-width: 300px;
            padding: 25px 40px;
            background: transparent;
            color: #666;
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            color: #2b3282;
        }

        .tab-btn.active::after {
            background: #2b3282;
        }

        .tab-btn:hover {
            color: #2b3282;
            background: rgba(43, 50, 130, 0.05);
        }

        /* Content Section */
        .recruitment-section {
            padding: 60px 20px;
        }

        .recruitment-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .empty-state i {
            font-size: 80px;
            color: #ffffff;
            margin-bottom: 10px;
            opacity: 1;
        }

        .empty-state h2 {
            color: #2b3282;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .empty-state p {
            color: #666;
            font-size: 18px;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #2b3282;
            color: #ffffff;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(43, 50, 130, 0.3);
        }

        .contact-btn:hover {
            background: #3d45a8;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(43, 50, 130, 0.4);
            color: #ffffff;
        }

        /* Job Grid */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
            gap: 30px;
        }

        /* Job Card */
        .job-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #2b3282 0%, #e74c3c 100%);
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(43, 50, 130, 0.15);
        }

        .job-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .job-title {
            color: #2b3282;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 15px;
        }

        .meta-item i {
            color: #2b3282;
            font-size: 16px;
        }

        .job-body h4 {
            color: #2b3282;
            font-size: 18px;
            font-weight: 800;
            margin: 20px 0 12px 0;
        }

        .job-body ul {
            margin: 0 0 15px 0;
            padding-left: 20px;
        }

        .job-body li {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .job-body p {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .job-footer {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .deadline {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e74c3c;
            font-weight: 700;
            font-size: 15px;
        }

        .deadline i {
            font-size: 18px;
        }

        .apply-btn {
            background: linear-gradient(135deg, #2b3282 0%, #3d45a8 100%);
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
        }

        .apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(43, 50, 130, 0.4);
            color: #ffffff;
        }

        .apply-btn i {
            transition: transform 0.3s ease;
        }

        .apply-btn:hover i {
            transform: translateX(3px);
        }

        /* Loading State */
        .loading-state {
            text-align: center;
            padding: 80px 20px;
        }

        .loading-state i {
            font-size: 48px;
            color: #2b3282;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        .loading-state p {
            color: #666;
            font-size: 18px;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 36px;
            }

            .tab-btn {
                padding: 20px 25px;
                font-size: 16px;
            }

            .job-grid {
                grid-template-columns: 1fr;
            }

            .job-card {
                padding: 25px;
            }

            .job-title {
                font-size: 20px;
            }

            .job-footer {
                flex-direction: column;
                align-items: stretch;
            }

            .apply-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 28px;
            }

            .tab-container {
                flex-direction: column;
            }

            .tab-btn {
                max-width: 100%;
            }
        }