
    /* 招聘頁面專用樣式 */
    .job-content {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "SF Pro Display", "Helvetica Neue", "PingFang TC", "Microsoft JhengHei", sans-serif;
        color: #1e293b;
        line-height: 1.7;
    }

    .job-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    }

    .job-hero h1 {
        font-size: clamp(38px, 5vw, 54px);
        font-weight: 700;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .job-hero-desc {
        font-size: 19px;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 32px;
    }

    .job-mission {
        background: white;
        border: 2px solid #3b82f6;
        border-radius: 18px;
        padding: 24px 32px;
        max-width: 700px;
        margin: 32px auto;
        font-size: 17px;
        color: #1e293b;
        line-height: 1.8;
    }

    .job-mission strong {
        color: #3b82f6;
        font-weight: 600;
    }

    .job-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 24px;
    }

    .job-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: #3b82f6;
        color: white;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        transition: all 0.3s ease;
    }

    .job-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .job-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: transparent;
        color: #3b82f6;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        border: 2px solid #3b82f6;
        transition: all 0.3s ease;
    }

    .job-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .job-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .job-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .job-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    /* 加入亮點 */
    .job-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .job-highlight-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .job-highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .job-highlight-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        margin: 0 auto 20px;
    }

    .job-highlight-card h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .job-highlight-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 職位卡片 */
    .job-positions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
        margin-bottom: 48px;
    }

    .job-position-card {
        background: white;
        padding: 36px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .job-position-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
        border-color: #3b82f6;
    }

    .job-position-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        color: white;
        padding: 6px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
    }

    .job-position-title {
        font-size: 26px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .job-position-title-en {
        font-size: 16px;
        color: #64748b;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .job-position-time {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #3b82f6;
        font-weight: 600;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .job-position-section {
        margin-bottom: 20px;
    }

    .job-position-section h5 {
        font-size: 16px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .job-position-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .job-position-section li {
        padding-left: 24px;
        position: relative;
        margin-bottom: 8px;
        color: #64748b;
        font-size: 15px;
        line-height: 1.6;
    }

    .job-position-section li:before {
        content: "•";
        position: absolute;
        left: 8px;
        color: #3b82f6;
        font-weight: bold;
    }

    .job-apply-btn {
        width: 100%;
        padding: 14px 24px;
        background: #3b82f6;
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        margin-top: 24px;
        cursor: pointer;
        box-sizing: border-box;
    }

    .job-apply-btn:hover {
        background: #1e40af;
        transform: translateY(-2px);
    }

    /* 福利區塊 */
    .job-benefits {
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        padding: 48px 32px;
        border-radius: 20px;
        max-width: 1000px;
        margin: 0 auto 48px;
    }

    .job-benefits h3 {
        font-size: 28px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 32px;
    }

    .job-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }

    .job-benefit-item {
        background: white;
        padding: 20px;
        border-radius: 12px;
        font-size: 16px;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .job-benefit-item:before {
        content: "✓";
        color: #3b82f6;
        font-weight: bold;
        font-size: 20px;
        flex-shrink: 0;
    }

    /* 流程步驟 */
    .job-process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .job-process-step {
        background: white;
        padding: 28px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .job-process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .job-process-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .job-process-icon {
        font-size: 48px;
        margin: 20px 0 16px;
    }

    .job-process-step h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .job-process-step p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* FAQ 區塊 */
    .job-faq {
        background: white;
        padding: 60px 24px;
    }

    .job-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .job-faq-item {
        background: #f0f9ff;
        padding: 24px;
        border-radius: 18px;
        margin-bottom: 16px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .job-faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .job-faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .job-faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .job-faq-answer strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* CTA Banner */
    .job-cta-banner {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 32px;
        border-radius: 20px;
        text-align: center;
        margin: 60px auto;
        max-width: 900px;
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    }

    .job-cta-banner h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .job-cta-banner p {
        font-size: 18px;
        margin-bottom: 32px;
        opacity: 0.95;
        line-height: 1.8;
    }

    /* 響應式設計 */
    @media (max-width: 768px) {
        .job-hero {
            padding: 60px 16px;
        }

        .job-section {
            padding: 40px 16px;
        }

        .job-highlights,
        .job-positions,
        .job-process {
            grid-template-columns: 1fr;
        }

        .job-benefits {
            padding: 32px 20px;
        }

        .job-benefits-grid {
            grid-template-columns: 1fr;
        }

        .job-cta {
            flex-direction: column;
            width: 100%;
        }

        .job-btn-primary,
        .job-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .job-cta-banner {
            padding: 40px 20px;
        }
    }
