.python-hero-carousel {
    position: relative;
}

.python-hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.python-carousel-caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    right: 5%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    text-align: left;
}

.python-main-heading {
    font-size: 90px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    line-height: 1.1;
}

.python-section-title {
    text-align: center;
    font-size: 70px;
    margin: 40px 0 20px;
    line-height: 1.2;
}

.python-section-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.python-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.python-feature-list {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.python-feature-list li {
    margin-bottom: 15px;
}

.python-career-list {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.python-career-list li {
    margin-bottom: 15px;
}

.python-btn-primary {
    background-color: darkred;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.python-btn-primary:hover {
    color:white;
    background-color: #a00;
    transform: translateY(-2px);
}

.python-faculty-section, .python-facilities-section, .python-faq-section {
    margin-top: 40px;
}

.python-subheading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.python-faq-question {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .python-main-heading {
        font-size: 70px;
    }
    
    .python-section-title {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .python-main-heading {
        font-size: 60px;
    }
    
    .python-section-title {
        font-size: 50px;
    }
    
    .python-hero-img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .python-main-heading {
        font-size: 40px;
    }
    
    .python-section-title {
        font-size: 40px;
    }
    
    .python-section-subtitle {
        font-size: 16px;
    }
    
    .python-hero-img {
        height: 400px;
    }
    
    .python-carousel-caption {
        bottom: 10%;
        padding: 15px;
    }
    
    .python-feature-list, .python-career-list {
        font-size: 16px;
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .python-main-heading {
        font-size: 32px;
    }
    
    .python-section-title {
        font-size: 32px;
    }
    
    .python-hero-img {
        height: 350px;
    }
    
    .python-carousel-caption {
        position: relative;
        bottom: 0;
        margin-top: -100px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .python-btn-primary {
        width: 100%;
        margin-bottom: 20px;
    }
}