/* 星河计划内容区 */
        .stellar-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
            padding: 0 0 15px 0;
        }
        
        .section-title.stellar-title h2 {
            background: linear-gradient(to right, var(--stellar), #6d28d9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--stellar), #6d28d9);
            border-radius: 2px;
        }
        
        /* 计划介绍 */
        .program-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 80px;
            align-items: center;
        }
        
        .intro-content {
            flex: 1;
            min-width: 300px;
        }
        
        .intro-content h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .intro-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .intro-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .intro-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .intro-image::before {
            content: "";
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--stellar);
            border-radius: var(--border-radius);
            z-index: -1;
        }
        
        /* 计划优势 */
        .advantages-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .advantage-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 35px;
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--stellar);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .advantage-icon {
            font-size: 3.5rem;
            color: var(--stellar);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }
        
        .advantage-card p {
            color: var(--text-light);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* 职位类别 */
        .positions-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .position-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .position-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .position-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .position-icon {
            font-size: 2.5rem;
            color: var(--stellar);
            margin-right: 15px;
        }
        
        .position-title {
            flex: 1;
        }
        
        .position-title h3 {
            font-size: 1.5rem;
            color: var(--dark);
        }
        
        .position-title .badge {
            display: inline-block;
            background: rgba(74, 20, 140, 0.1);
            color: var(--stellar);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-top: 5px;
        }
        
        .position-details {
            margin-bottom: 25px;
        }
        
        .position-details ul {
            list-style-type: none;
        }
        
        .position-details li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .position-details li i {
            color: var(--stellar);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* 发展路径 */
        .pathway-container {
            background: linear-gradient(135deg, #1a0c2e 0%, #2d0b5e 100%);
            color: white;
            border-radius: var(--border-radius);
            padding: 50px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .pathway-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1543722530-d2c3201371e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            opacity: 0.1;
        }
        
        .pathway-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .pathway-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .pathway-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .pathway-step {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            text-align: center;
            position: relative;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            transition: var(--transition);
            z-index: 1;
        }
        
        .pathway-step:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--stellar);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .step-description {
            font-size: 1rem;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        /* 申请流程 */
        .application-process {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 80px;
            align-items: center;
        }
        
        .process-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            max-height: 500px;
            text-align: center;
            box-shadow: var(--box-shadow);
            z-index: 1;
        }
        
        .process-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: transform 0.5s ease;
            max-width: 100%;
            height: auto;
        }
        
        .process-image:hover img {
            transform: scale(1.03);
        }
        
        .process-image::before {
            content: "";
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--stellar);
            border-radius: var(--border-radius);
            z-index: -1;
        }
        
        .process-steps {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }
        
        .process-step {
            display: flex;
            margin: 10px 0;
            align-items: flex-start;
        }
        
        .step-icon {
            font-size: 1.8rem;
            color: var(--stellar);
            min-width: 60px;
            text-align: center;
            margin-right: 10px;
        }
        
        .step-details h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step-details p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* FAQ */
        .faq-container {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 50px;
            margin-bottom: 80px;
        }
        
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 30px;
        }
        
        .faq-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }
        
        .faq-question {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
        }
        
        .faq-question i {
            color: var(--stellar);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .faq-question h3 {
            font-size: 1.3rem;
            color: var(--dark);
            flex: 1;
        }
        
        .faq-answer {
            padding-left: 35px;
            padding-top: 15px;
            color: var(--text-light);
            line-height: 1.8;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* CTA区域 */
        .cta-section {
            background: linear-gradient(135deg, var(--stellar) 0%, #6d28d9 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius: var(--border-radius);
            margin-bottom: 80px;
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* 按钮样式 */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background: #e68a00;
        }
        
        .btn-primary {
            background: var(--primary);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
        }
        
        .btn-stellar {
            background: var(--stellar);
        }
        
        .btn-stellar:hover {
            background: #3d0f6e;
        }
        
        .btn-light {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-light:hover {
            background: rgba(255, 255, 255, 0.25);
        }