/* Custom CSS without using body root * */
        .hero-section {
            position: relative;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: auto;
            min-height: 400px;
            object-fit: cover;
        }
        
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .hero-description {
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .btn-primary-custom {
            background-color: #8B0000;
            border: none;
            color: white;
            padding: 12px 25px;
            font-size: 1.1rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #A52A2A;
            transform: translateY(-2px);
        }
        
        .section-title {
            font-size: 2.2rem;
            text-align: center;
            margin: 40px 0 20px;
            color: #333;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
            line-height: 1.6;
        }
        
        .features-list {
            padding-left: 20px;
            margin-bottom: 30px;
        }
        
        .features-list li {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .career-list {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .career-list li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .faq-item {
            margin-bottom: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #8B0000;
        }
        
        .faculty-section, .facilities-section {
            margin-bottom: 30px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content {
                position: relative;
                background: #333;
                padding: 20px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .btn-primary-custom {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .hero-description, .section-subtitle {
                font-size: 0.9rem;
            }
        }