.process-page-wrapper {
    padding: 100px 0;
    background: #fff;
    color: #333;
}

.process-header { text-align: center; margin-bottom: 60px; }
.header-notice { 
    background: #f8f9fa; 
    padding: 15px; 
    border-radius: 8px; 
    display: inline-block; 
    margin-top: 20px;
    border: 1px solid #eee;
    font-size: 0.9rem;
}

.section-label {
    font-size: 1.4rem;
    color: var(--iiser-red);
    border-bottom: 2px solid var(--iiser-red);
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 5px;
}

/* Card Grid for Recruiters */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.info-card {
    padding: 30px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
}

.highlight-card {
    background: #fff5f6;
    border-color: #ffcccc;
}

/* Workflow Timeline */
.workflow-timeline {
    border-left: 3px solid #eee;
    margin-left: 20px;
    padding-left: 40px;
}

.workflow-item {
    position: relative;
    margin-bottom: 40px;
}

.workflow-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--iiser-red);
    border-radius: 50%;
}

.w-tag {
    background: var(--iiser-red);
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
}

/* Research Section */
.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.research-box {
    background: #333;
    color: white;
    padding: 25px;
    border-radius: 12px;
}

.research-box h4 { color: var(--iiser-red); margin-bottom: 15px; }

/* Protocol Box */
.protocol-box {
    margin-top: 60px;
    background: #A51C30;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

/* Android Fixes */
@media (max-width: 768px) {
    .research-grid { grid-template-columns: 1fr; }
    .workflow-timeline { padding-left: 25px; margin-left: 10px; }
    .workflow-item::before { left: -34px; }
}