/* 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 {
            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-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

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

        .penm-info-table {
            width: 100%;
        }

        .penm-info-row {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
            padding: 15px 0;
        }

        .penm-info-row:last-child {
            border-bottom: none;
        }

        .penm-info-label {
            width: 120px;
            font-weight: 600;
            color: #403F6F;
            font-size: 1rem;
            word-break: keep-all;
            flex-shrink: 0;
        }

        .penm-info-value {
            flex: 1;
            color: #555;
            font-size: 1rem;
            word-break: keep-all;
            word-wrap: break-word;
        }

        .penm-contact-section {
            background: #f8f9ff;
            padding: 40px;
            border: 1px solid #e4eaff;
        }

        .penm-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .penm-contact-item {
            text-align: center;
        }

        .penm-contact-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #403F6F;
            margin-bottom: 10px;
        }

        .penm-contact-desc {
            font-size: 1rem;
            color: #666;
            line-height: 1.5;
            word-break: keep-all;
            word-wrap: break-word;
        }

        .penm-bank-section {
            background: white;
            border: 2px solid #e4eaff;
            padding: 40px;
        }

        .penm-bank-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .penm-bank-item {
            text-align: center;
            padding: 20px;
            background: #f8f9ff;
            border: 1px solid #e4eaff;
        }

        .penm-bank-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #403F6F;
            margin-bottom: 10px;
        }

        .penm-bank-number {
            font-size: 1.1rem;
            color: #555;
            font-family: 'Courier New', monospace;
            word-break: break-all;
        }

        .penm-bank-owner {
            background: #e4eaff;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
        }

        .penm-bank-owner-text {
            font-size: 1rem;
            color: #403F6F;
            font-weight: 600;
        }

        /* ¹ÝÀÀÇü µðÀÚÀÎ */
        @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-info-card,
            .penm-contact-section,
            .penm-bank-section {
                padding: 25px;
            }

            .penm-info-row {
                flex-direction: column;
                gap: 5px;
                padding: 12px 0;
            }

            .penm-info-label {
                width: auto;
                margin-bottom: 5px;
            }

            .penm-contact-grid,
            .penm-bank-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .penm-contact-number {
                font-size: 1.5rem;
            }
        }

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

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

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

            .penm-info-card,
            .penm-contact-section,
            .penm-bank-section {
                padding: 20px;
            }

            .penm-bank-item {
                padding: 15px;
            }
        }
/* BASIC css end */

