        /* 유지보수 페이지 스타일 */
        .maintenance-page {
            max-width: 1260px;
            margin: 0px auto 60px;
            padding: 0px 20px 40px;
        }

        .maintenance-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .maintenance-header h1 {
            font-size: 2.8em;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .maintenance-header p {
            font-size: 1.2em;
            color: #666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .maintenance-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 0px;
        }

        .price-table {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            width: 100%;
        }

        .price-table h2 {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 20px;
            margin: 0;
            font-size: 1.5em;
            text-align: center;
        }

        .price-list {
            padding: 20px;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .price-item:hover {
            background: #f8f9fa;
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .price-name {
            font-weight: 600;
            color: #333;
            flex: 1;
        }

        .price-value {
            color: #34495e;
            font-weight: 700;
            margin-left: 20px;
            white-space: nowrap;
        }

        .price-note {
            font-size: 0.9em;
            color: #666;
            margin-top: 5px;
            display: block;
        }

        .maintenance-info {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
        }

        .maintenance-info h2 {
            color: #333;
            font-size: 1.8em;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .maintenance-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 3px;
        }

        .maintenance-info p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .requirements-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .requirements-list li::before {
            content: '•';
            color: #2ecc71;
            font-size: 1.5em;
            position: absolute;
            left: 0;
            top: -5px;
        }

        .requirements-list li strong {
            color: #333;
            /* display: inline;
            margin-right: 10px; */
            display: block;
            margin-bottom:5px;
            white-space: nowrap;
        }

        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
        }

        .cta-section h2 {
            color: #333;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1em;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
        }

        @media (max-width: 992px) {
            .maintenance-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .maintenance-page {
                padding: 20px;
                margin: 0px auto 40px;
            }

            .maintenance-header h1 {
                font-size: 2.2em;
            }

            .maintenance-header p {
                font-size: 1.1em;
            }

            .price-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .price-value {
                margin: 10px 0 0 0;
            }
        }
