        @charset "UTF-8";

        .banner img {
            width: 100%;
            height: auto;
            display: block
        }

        .container {
            max-width: 98%;
            width: 100%;
            margin: 50px auto;
            padding: 0 15px;
            flex: 1
        }

        .page-title {
            text-align: center;
            margin-bottom: 45px
        }

        .page-title h1 {
            font-size: 34px;
            color: #111827;
            margin-bottom: 12px
        }

        .page-title p {
            font-size: 16px;
            color: #6b7280;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

      
        .about-wrap {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .about-card {
            background: #fff;
            border-radius: 20px;
            padding: 45px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .about-card h2 {
            font-size: 24px;
            color: #0066cc;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f3f4f6;
        }

        .company-intro {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        @media (min-width:768px) {
            .company-intro {
                flex-direction: row;
                gap: 30px;
            }

            .intro-text {
                flex: 1.5;
            }

            .intro-img {
                flex: 1;
            }
        }

        .intro-text p {
            font-size: 16px;
            color: #374151;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .intro-img img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .timeline {
            position: relative;
            margin: 30px 0;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #0066cc;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #0066cc;
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px #0066cc;
        }

        .timeline-item h3 {
            font-size: 18px;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .timeline-item p {
            font-size: 15px;
            color: #6b7280;
        }

        .factory-showcase {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        @media (min-width:768px) {
            .factory-showcase {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }
        }