/**
 * Hero Section Height Reduction
 * Reduces vertical spacing while keeping illustration intact
 * Author: Custom CSS for DuHosting
 */

/* Reduce top and bottom padding of hero section */
.hero-banner {
    padding: 40px 0 30px !important;
    /* Reduced from 80px 0 40px */
}

/* Reduce spacing in banner text elements */
.banner-text h1 {
    margin: 0 0 10px !important;
    /* Reduced from 15px */
}

.banner-text h6 {
    margin: 0 0 15px !important;
    /* Reduced from 20px */
}

.banner-text ul {
    margin: 0 0 25px !important;
    /* Reduced from 35px */
}

.banner-text li {
    padding: 5px 0 5px 27px !important;
    /* Reduced from 7px */
}

/* Ensure illustration stays properly sized and visible */
.banner-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-banner {
        padding: 30px 0 20px !important;
    }

    .banner-text h1 {
        font-size: 40px !important;
        margin: 0 0 8px !important;
    }

    .banner-text h6 {
        font-size: 18px !important;
        margin: 0 0 12px !important;
    }

    .banner-text ul {
        margin: 0 0 20px !important;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 25px 0 15px !important;
    }

    .banner-text h1 {
        font-size: 32px !important;
    }

    .banner-text h6 {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        padding: 20px 0 10px !important;
    }
}