.placed-students-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f0f2f5;
    border-radius: 20px;
}

.placed-students-container {
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #333;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ffb347, #ff7e00);
    border-radius: 2px;
}

.student-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    position: relative;
}

.student-card:hover {
    transform: translateY(-6px);
}

.card-top {
    background: linear-gradient(45deg, #ffb347, #ff7e00);
    height: 80px;
    position: relative;
}

.student-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 2;
}

.student-body {
    padding: 60px 20px 20px;
}

.student-name {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.student-role {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
}

.student-package {
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 6px;
}

.student-company {
    font-size: 14px;
    color: #555;
}

.pagination-wrapper {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.pagination-btn {
    background-color: #343a40;
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background-color: #23272b;
    color: white;
    transform: scale(1.05);
}

.page-info {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .job-assistance-row {
        padding: 1rem;
    }
    
    .job-assistance-content {
        padding: 1rem;
        text-align: center;
    }
    
    .enquiry-btn {
        margin: 0 auto;
    }
    
    .job-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-top {
        height: 60px;
    }
    
    .student-img {
        width: 70px;
        height: 70px;
        top: 30px;
    }
    
    .student-body {
        padding-top: 50px;
    }
}