
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #333333;
            --light-gray: #f5f5f5;
            --text-color: #555555;
            --white: #ffffff;
            --border-color: #eeeeee;
            --font-main: 'Arial', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* No hero section anymore - removed top gray area */
        
        /* Company Overview Section (Who We Are) - now first section */
        .overview-section {
            padding: 60px 0 40px 0;
        }

        .section-title {
            font-size: 28px;
            color: var(--secondary-color);
            margin-bottom: 40px;
            text-align: center;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }

        .overview-text h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .overview-text p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .overview-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .overview-images img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background-color: #fafafa;
            transition: transform 0.2s ease;
        }
        
        .overview-images img:hover {
            transform: scale(1.02);
        }

        /* Basic Info Section - clean white background */
        .info-section {
            background-color: var(--white);
            padding: 60px 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .info-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }

        .info-card h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .info-item strong {
            color: var(--secondary-color);
        }

        /* Factory & Production Section */
        .factory-section {
            padding: 60px 0;
            background-color: var(--white);
        }

        .factory-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .factory-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }

        .factory-card h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .overview-grid,
            .info-grid,
            .factory-info {
                grid-template-columns: 1fr;
            }
            
            .section-title span, 
            .section-title {
                font-size: 28px;
            }

            .overview-images {
                grid-template-columns: 1fr;
            }
            
            .info-item {
                flex-direction: column;
                gap: 4px;
            }
        }
        
        /* Remove any extra backgrounds or footers */
        body {
            margin: 0;
            padding: 0;
        }
    