/**
 * Hero Title Position Adjustment
 * Move hero title to bottom of hero section
 */

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 200px 0 100px;
    flex: 1;
    display: flex;
    align-items: flex-end !important; 
    padding-bottom: 200px !important; 
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-content {
        padding-bottom: 200px !important;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-bottom: 200px !important;
    }
}
