/* BASIC css start */
        .penm-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ÅÇ ³×ºñ°ÔÀÌ¼Ç */
        .penm-tab-navigation {
            background: white;
            border-bottom: 3px solid #e4eaff;
            margin-bottom: 0;
        }

        .penm-tab-nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }

        .penm-tab-button {
            flex: 1;
            padding: 25px 40px;
            background: #f8f9ff;
            border: none;
            font-size: 1.4rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            position: relative;
        }

        .penm-tab-button:hover {
            background: #e4eaff;
            color: #403F6F;
        }

        .penm-tab-button.active {
            background: white;
            color: #403F6F;
            border-bottom: 3px solid #403F6F;
        }

        /* ÅÇ ÄÁÅÙÃ÷ */
        .penm-tab-content {
            display: none;
        }

        .penm-tab-content.active {
            display: block;
        }

        /* ¹è³Ê */
        .penm-info-banner {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 80px;
        }

        .penm-info-banner img {
            width: 1200px;
            height: 500px;
            max-width: 100%;
            object-fit: contain;
        }

        /* ¼½¼Ç */
        .penm-info-section {
            margin-bottom: 120px;
        }

        .penm-section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #403F6F;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .penm-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #403F6F, #6b69a0);
            border-radius: 2px;
        }

        .penm-section-subtitle {
            font-size: 1.6rem;
            font-weight: 600;
            color: #403F6F;
            margin-bottom: 40px;
            padding: 15px 30px;
            background: linear-gradient(135deg, #e4eaff, #f8f9ff);
            border-radius: 8px;
            display: inline-block;
        }

        /* ¾È³» ¹Ú½º */
        .penm-notice-box {
            background: linear-gradient(135deg, #f8f9ff, #ffffff);
            padding: 45px 50px;
            border-radius: 12px;
            margin-bottom: 50px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.08);
        }

        .penm-notice-box p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.9;
            margin-bottom: 12px;
            word-break: keep-all;
        }

        .penm-notice-box p:last-child {
            margin-bottom: 0;
        }

        .penm-notice-box strong {
            color: #403F6F;
            font-weight: 600;
        }

        /* ÁÖÀÇ»çÇ× ¹Ú½º */
        .penm-warning-box {
            background: linear-gradient(135deg, #fff8e1, #ffffff);
            border-radius: 12px;
            padding: 35px 40px;
            margin-bottom: 40px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
            border: 2px solid #ffd54f;
        }

        .penm-warning-box p {
            font-size: 1.05rem;
            color: #f57f17;
            line-height: 1.8;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .penm-warning-box i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* ¹è³Ê ÀÌ¹ÌÁö (Ä«µå ´ëÃ¼¿ë) */
        .penm-example-banner {
            width: 100%;
            margin-bottom: 50px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
        }

        .penm-example-banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Æ÷Àå ¹è³Ê ÀÌ¹ÌÁö (°¡·Î ±ä ÀÌ¹ÌÁö) */
        .penm-packaging-banner-section {
            margin-bottom: 100px;
        }

        .penm-packaging-banner-image {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
        }

        .penm-packaging-banner-image:last-child {
            margin-bottom: 0;
        }

        .penm-packaging-banner-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .penm-packaging-special-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-bottom: 70px;
        }

        .penm-packaging-special-card {
            background: white;
            border: 1px solid #e4eaff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(64, 63, 111, 0.05);
        }

        .penm-packaging-special-card:hover {
            border-color: #403F6F;
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(64, 63, 111, 0.18);
        }

        .penm-packaging-special-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        .penm-packaging-special-text {
            padding: 25px 20px;
            text-align: center;
            background: #fafbff;
        }

        .penm-packaging-special-text h4 {
            font-size: 1.1rem;
            color: #403F6F;
            font-weight: 600;
            line-height: 1.5;
        }

        /* Æ÷Àå ¿¹½Ã - °¶·¯¸® (Á¦¸ñ ¾øÀ½) */
        .penm-packaging-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .penm-packaging-gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
            transition: all 0.3s ease;
        }

        .penm-packaging-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(64, 63, 111, 0.18);
        }

        .penm-packaging-gallery-item img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            display: block;
        }

        /* ÆùÆ® ÀÌ¹ÌÁö */
        .penm-font-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-bottom: 50px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
        }

        /* °¢ÀÎ À§Ä¡ */
        .penm-position-section {
            margin-bottom: 60px;
        }

        .penm-position-image-single {
            text-align: center;
            margin: 40px 0;
        }

        .penm-position-image-single img {
            max-width: 600px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
        }

        .penm-position-image-double {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .penm-position-image-double img {
            max-width: 100%;
            width: auto;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.1);
        }

        .penm-position-desc {
            background: linear-gradient(135deg, #f8f9ff, #ffffff);
            padding: 35px 40px;
            margin-top: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(64, 63, 111, 0.08);
        }

        .penm-position-desc p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .penm-position-desc p:last-child {
            margin-bottom: 0;
        }

        /* ¹ÝÀÀÇü */
        @media (max-width: 1024px) {
            .penm-example-banner {
                margin-bottom: 40px;
            }

            .penm-packaging-special-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .penm-packaging-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .penm-packaging-banner-section {
                margin-bottom: 70px;
            }

            .penm-packaging-banner-image {
                margin-bottom: 15px;
                border-radius: 8px;
            }
        }

        @media (max-width: 768px) {
            .penm-tab-button {
                font-size: 1.2rem;
                padding: 20px 25px;
            }

            .penm-info-banner {
                margin-bottom: 50px;
            }

            .penm-info-banner img {
                height: auto;
            }

            .penm-example-banner {
                margin-bottom: 30px;
            }

            .penm-packaging-special-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .penm-packaging-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .penm-packaging-special-card img,
            .penm-packaging-gallery-item img {
                height: 220px;
            }

            .penm-position-image-double {
                grid-template-columns: 1fr;
            }

            .penm-section-title {
                font-size: 1.6rem;
            }

            .penm-section-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .penm-tab-button {
                font-size: 1rem;
                padding: 18px 20px;
            }

            .penm-info-banner img {
                height: auto;
            }

            .penm-example-banner {
                border-radius: 8px;
            }

            .penm-notice-box,
            .penm-warning-box {
                padding: 25px 20px;
            }
        }
/* BASIC css end */

