/**
 * company-our-story.css
 * Fixes the spacing issue between header and main content
 */

/* Fix for hero container spacing issue */
#hero-container {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* Ensure main content starts immediately after header */
#main-content {
    margin-top: 0 !important;
    padding-top: 2rem;
}

/* Override any hero-related CSS that might add spacing */
.hero-section,
.hero-slideshow,
.hero-container {
    display: none !important;
}

/* Optional: Add smooth transition for better UX */
#header-container + #main-content {
    transition: margin-top 0.3s ease;
}