 /* Custom CSS without using body root * selector */
.bvoc-hero-section {
    position: relative;
}

.bvoc-hero-image {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.bvoc-hero-title {
    font-size: 70px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bvoc-hero-description {
    text-align: left;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 18px;
}

.bvoc-hero-button {
    background-color: darkred;
    color:white;
    font-size: larger;
    margin-bottom: 80px;
    text-align: left;
    margin-left: -8px;
    border: none;
    padding: 12px 30px;
}

.bvoc-hero-button:hover {
    background-color: #b30000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bvoc-section-title {
    text-align: center;
    font-size: 50px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.bvoc-section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.bvoc-features-list {
    padding-left: 20px;
}

.bvoc-features-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.bvoc-know-more-btn {
    background-color: darkred;
    color: white;
    font-size: larger;
    margin-bottom: 80px;
    border: none;
    padding: 12px 30px;
}

.bvoc-know-more-btn:hover {
    background-color: #b30000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bvoc-career-list {
    padding-left: 20px;
}

.bvoc-career-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.bvoc-faq-item {
    margin-bottom: 20px;
}

.bvoc-faq-question {
    font-weight: bold;
    color: #333;
}

.bvoc-faq-answer {
    color: #555;
    margin-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .bvoc-hero-title {
        font-size: 60px;
    }
    
    .bvoc-section-title {
        font-size: 45px;
    }
}

@media (max-width: 992px) {
    .bvoc-hero-title {
        font-size: 50px;
    }
    
    .bvoc-section-title {
        font-size: 40px;
    }
    
    .bvoc-hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .bvoc-hero-title {
        font-size: 40px;
    }
    
    .bvoc-section-title {
        font-size: 35px;
    }
    
    .bvoc-hero-image {
        height: 400px;
    }
    
    .bvoc-hero-description {
        font-size: 16px;
    }
    
    .bvoc-section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .bvoc-hero-title {
        font-size: 32px;
    }
    
    .bvoc-section-title {
        font-size: 28px;
    }
    
    .bvoc-hero-image {
        height: 350px;
    }
    
    .bvoc-hero-button, .bvoc-know-more-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}