/* BASIC css start */
        /* ¸ÞÀÎ ÄÁÅ×ÀÌ³Ê */
        .penm-main-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ¹è³Ê ¼½¼Ç */
        .penm-banner-section {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #403F6F, #2c344e);
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .penm-banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .penm-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(64, 63, 111, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .penm-banner-text {
            text-align: center;
            color: white;
        }

        .penm-banner-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .penm-banner-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            opacity: 0.9;
        }

        /* ÄÁÅÙÃ÷ ¼½¼Ç */
        .penm-content-section {
            margin-bottom: 60px;
        }

        .penm-section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #403F6F;
            margin-bottom: 40px;
            border-left: 6px solid #403F6F;
            padding-left: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .penm-section-icon {
            font-size: 2rem;
            color: #403F6F;
        }

        .penm-content-card {
            background: white;
            border: 2px solid #e4eaff;
            padding: 40px;
            margin-bottom: 40px;
        }

        .penm-step-item {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
            padding-left: 35px;
            position: relative;
            line-height: 1.8;
            word-break: keep-all;
            word-wrap: break-word;
        }

        .penm-step-item::before {
            content: '';
            position: absolute;
            left: 0;
            background: #403F6F;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            top: 12px;
        }

        .penm-brand-list {
            background: #f8f9ff;
            padding: 30px;
            margin: 20px 0;
            border-left: 4px solid #403F6F;
        }

        .penm-brand-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .penm-brand-item {
            font-size: 1.1rem;
            color: #403F6F;
            margin-bottom: 0;
            font-weight: 500;
            word-break: keep-all;
            word-wrap: break-word;
            background: white;
            padding: 15px;
            border: 1px solid #e4eaff;
        }

        .penm-brand-item:last-child {
            margin-bottom: 0;
        }

        .penm-brand-special {
            color: #2c344e;
            font-weight: 600;
            background: #e4eaff;
        }

        .penm-notice-box {
            background: linear-gradient(135deg, #e4eaff, #c8d5ff);
            padding: 30px;
            margin: 30px 0;
            border-left: 6px solid #403F6F;
        }

        .penm-notice-text {
            font-size: 1rem;
            color: #403F6F;
            line-height: 1.7;
            word-break: keep-all;
            word-wrap: break-word;
            font-weight: 500;
        }

        .penm-warning-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-left: 6px solid #fdcb6e;
            padding: 25px;
            margin: 25px 0;
        }

        .penm-warning-text {
            font-size: 1rem;
            color: #856404;
            line-height: 1.7;
            word-break: keep-all;
            word-wrap: break-word;
            font-weight: 500;
        }

        /* ¿¬¶ôÃ³ °­Á¶ */
        .penm-contact-highlight {
            background: #403F6F;
            color: white;
            padding: 20px;
            text-align: center;
            margin: 30px 0;
        }

        .penm-contact-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .penm-contact-desc {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* ¹ÝÀÀÇü µðÀÚÀÎ */
        @media (max-width: 768px) {
            .penm-banner-title {
                font-size: 2.5rem;
            }

            .penm-banner-subtitle {
                font-size: 1.1rem;
            }

            .penm-section-title {
                font-size: 1.8rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .penm-content-card {
                padding: 25px;
            }

            .penm-step-item {
                padding-left: 30px;
            }

            .penm-brand-grid {
                flex-direction: column;
                gap: 10px;
            }

            .penm-brand-list {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .penm-banner-section {
                height: 300px;
            }

            .penm-banner-title {
                font-size: 2rem;
            }

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

            .penm-content-card,
            .penm-notice-box,
            .penm-warning-box {
                padding: 20px;
            }

            .penm-contact-number {
                font-size: 1.3rem;
            }
        }
/* BASIC css end */

