        /* General Reset for standalone use */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #F5F8F2;
        }

        /* Scoping wrapper to ensure the header is on its own and isolated */
        #site-main-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: #F5F8F2;
            min-height: 100vh;
        }

        /* Hero Section Styling */
        .page-banner {
            position: relative;
            height: 300px; 
            width: 100%;
            display: flex;
            align-items: center; 
            overflow: hidden;
            background-image: url('img/img2/Factory.webp');
            background-size: cover;
            background-position: center;
            margin-bottom: -40px; 
            z-index: 1;
        }

        /* Green (#086a3b) to Yellow (#FFCC00) Gradient Overlay */
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(8, 106, 59, 0.85) 0%, rgba(255, 204, 0, 0.5) 100%);
            z-index: 1;
        }

        /* Animation for text entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content Container Wrapper */
        .banner-content-container {
            position: relative;
            z-index: 10;
            padding-left: 10%;
            margin-top: -30px; 
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Wave Decoration */
        .bottom-wave-wrap {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 5;
        }

        .bottom-wave-graphic {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px; 
        }

        .bottom-wave-stroke {
            fill: none;
            stroke: #FFCC00;
            stroke-width: 3;
        }

        /* Background matching fill */
        .bottom-wave-bg {
            fill: #F5F8F2;
        }

        /* Body Content Container */
        .page-body-container {
            position: relative;
            z-index: 2; 
            padding: 40px; 
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .page-banner {
                height: 240px;
                margin-bottom: -30px;
            }
            .banner-content-container {
                padding-left: 5%;
            }
            .page-body-container {
                padding: 24px;
            }
        }