/* Test Syllabus & Sample Paper Styles */
.syllabus-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.syllabus-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
}

.syllabus-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.syllabus-table-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.syllabus-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.syllabus-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.syllabus-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
    font-size: 1rem;
}

.syllabus-table tr:last-child td {
    border-bottom: none;
}

.duration-col {
    background-color: #ffffff;
    border-left: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    color: #333;
}

/* Download Card */
.download-card {
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background-color: #fbfbfb;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: #8dc73f;
    background-color: #f8fcf0;
}

.pdf-icon {
    font-size: 3rem;
    color: #d1d1f1;
    margin-bottom: 20px;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.download-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-download-pdf {
    background: #C62828;
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-download-pdf:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

@media (max-width: 768px) {
    .syllabus-title {
        font-size: 2rem;
    }
    
    .syllabus-table th, .syllabus-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .duration-col {
        border-left: none;
        border-top: 1px solid #eee;
    }
}
