    :root {
        --gray-50: #F9FAFB;
        --gray-100: #F3F4F6;
        --gray-200: #E5E7EB;
        --gray-300: #D1D5DB;
        --gray-400: #9CA3AF;
        --gray-500: #6B7280;
        --gray-600: #4B5563;
        --gray-700: #374151;
        --gray-800: #374151;
        --gray-900: #111827;

        --success-500: #10B981;
        --warning-500: #F59E0B;
        --error-500: #EF4444;

        /* Typography */
        --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        --font-size-xs: 0.75rem;
        --font-size-sm: 0.875rem;
        --font-size-base: 1rem;
        --font-size-lg: 1.125rem;
        --font-size-xl: 1.25rem;
        --font-size-2xl: 1.5rem;
        --font-size-3xl: 1.875rem;
        --font-size-4xl: 2.25rem;
        --font-size-5xl: 3rem;

        --font-weight-light: 300;
        --font-weight-normal: 400;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;

        --line-height-tight: 1.25;
        --line-height-snug: 1.375;
        --line-height-normal: 1.6;
        --line-height-relaxed: 1.625;

        /* Spacing */
        --spacing-1: 0.25rem;
        --spacing-2: 0.5rem;
        --spacing-3: 0.75rem;
        --spacing-4: 1rem;
        --spacing-5: 1.25rem;
        --spacing-6: 1.5rem;
        --spacing-8: 2rem;
        --spacing-10: 2.5rem;
        --spacing-12: 3rem;
        --spacing-16: 4rem;
        --spacing-20: 5rem;
        --spacing-24: 6rem;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        background: linear-gradient(to top right, #064e3b, #134e4a, #164e63);
        min-height: 100vh;
        position: relative;
        color: white;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    a {
        text-decoration: none;
        color: black;
    }

    .job-title {
        font-size: var(--font-size-3xl);
        font-weight: var(--font-weight-bold);
        color: var(--gray-900);
        margin-bottom: var(--spacing-2);
    }

    .company-details {
        font-size: var(--font-size-base);
        font-weight: var(--font-weight-medium);
        color: var(--gray-600);
        margin-bottom: var(--spacing-2);
    }

    .job-detail-header1 {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    .job-header1 {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .job-header1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #7cb342 0%, #689f38 100%);
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .job-tag.full-time {
        background: rgba(34, 197, 94, 0.2);
        color: #047857;
    }

    .company-logo {
        width: 80px;
        height: 80px;
        border-radius: 15px;
        object-fit: cover;
    }

    .tabs-container {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .tab-content {
        padding: 40px;
        display: none;
    }

    .tab-content-keywords {
        padding: 20px;
    }

    .tab-content.active {
        display: block;
    }

    .content-section {
        margin-bottom: 35px;
    }

    .job-meta span {
        color: #6b7280;
        font-size: 0.875rem;
        margin-right: 1rem;
    }

    .section-title {
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-medium);
        color: var(--gray-700);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .description-text {
        color: #555;
        line-height: 1.8;
        font-size: 1.1rem;
    }

    .feature-list {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        margin-bottom: 1rem;
    }

    .feature-list span {
        background: #f8f9fa;
        padding: 15px 20px;
        border-radius: 10px;
        border-left: 4px solid #7cb342;
        color: #555;
        transition: all 0.3s ease;
    }
    .apply-section {
        color: black;
        padding: 40px;
        border-radius: 20px;
        background: white;
        text-align: center;
        margin-bottom: 2rem;
    }

    .apply-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: black;
        margin-top: 1rem;
    }

    .apply-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .similar-cards {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        margin: 1rem;
    }

    .job-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}



    @media (max-width: 768px) {
        .header-top {
            flex-direction: column;
            gap: 20px;
        }
        .similar-cards {
            flex-direction: column;
        }

        .job-detail-header1 {
            flex-direction: column;
        }

        .apply-buttons {
            flex-direction: column;
            align-items: center;
        }

        .job-cards {
            order: 1;
            max-height: none;
        }

        .job-actions {
            width: 100%;
            text-align: center;
        }

        .job-actions .apply-btn {
            display: block;
            width: 100% !important;
        }

        .expired-job-cards {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        }
    }



    /* Job Cards  */
    .job-cards {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 24px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-height: 1000px;
        overflow-y: auto;

    }

    .job-card {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #333;
        border: 1px solid var(--gray-300);
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .job-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        border-color: #047857;
    }

    .card-header {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .card-header .job-tag {
        margin-left: auto;
        flex-shrink: 0;
        padding: 4px 8px;
        border-radius: 6px;
    }

    .company-logo-small {
        flex-shrink: 0;
    }

    .company-logo-small img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
    }

    .card-info {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }


    .input-icon-badges {
        width: 15px;
        height: 15px;
        color: #4ade80;
        margin-right: 5px;
    }

    .error-page {
        min-height: 80vh;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .error-code {
        font-size: 8rem;
        font-weight: 900;
        background: linear-gradient(45deg, #10b981, #06d6a0, #118ab2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    }


    .error-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #f0fdfa;
    }

    .error-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }


    .buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .expired-job-cards {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 15px;
        margin: 1rem;
    }