.academics-section {
            padding: 60px 0;
            background: #f5f5f5;
        }
        
        .academic-tabs {
            background: white;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            margin-bottom: 0;
        }
        
        .academic-tabs .nav-tabs {
            border-bottom: none;
            padding: 0;
            margin: 0;
        }
        
        .academic-tabs .nav-link {
            background: #e9ecef;
            color: #333;
            border: none;
            border-radius: 0;
            padding: 15px 25px;
            margin: 0;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .academic-tabs .nav-link:hover {
            background: #dee2e6;
        }
        
        .academic-tabs .nav-link.active {
            background: #003d7a;
            color: white;
        }
        
        .tab-content-area {
            background: white;
            padding: 40px;
            border-radius: 0 0 8px 8px;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffc107;
            display: inline-block;
        }
        
        .department-item {
            background: #f8f9fa;
            padding: 15px 20px;
            margin-bottom: 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .department-item:hover {
            background: #e9ecef;
        }
        
        .department-name {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #333;
            font-size: 16px;
            font-weight: 500;
        }
        
        .department-icon {
            color: #dc3545;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .item-links {
            margin-top: 10px;
            padding-left: 30px;
        }
        
        .item-link {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 8px;
            color: #0066cc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .item-link:hover {
            color: #004499;
            text-decoration: underline;
        }
        
        .item-link i {
            margin-right: 5px;
            font-size: 12px;
        }
        
        .no-content {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        
        .result-year-tabs .nav-link {
            background: #e9ecef;
            color: #333;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .result-year-tabs .nav-link.active {
            background: #003d7a;
            color: white;
        }
        .result-year-tabs .nav-link:hover:not(.active) {
            background: #dee2e6;
        }

        @media (max-width: 768px) {
            .academic-tabs .nav-link {
                font-size: 13px;
                padding: 12px 15px;
            }

            .tab-content-area {
                padding: 20px;
            }
        }
