/* Additional custom styles and corrections */

/* Style for the 'Hero' section specific adjustments */
.hero {
    /* Background handled in HTML inline style */
    min-height: 600px;
    position: relative;
    z-index: 1;
}

/* Discount/Box Styles */
.box {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
}