.company-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0;
        }
        .company-hero h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        /* p1 페이지 카드 스타일 */
        .page-p .card {
            border: none !important;
            box-shadow: none !important;
        }
        .page-p .card-img-top.border {
            border: none !important;
        }
        .company-hero .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .section-title {
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .company-info-card {
            border: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }
        .company-info-card:hover {
            transform: translateY(-5px);
        }
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }
        .info-label {
            font-weight: bold;
            color: #495057;
            min-width: 100px;
        }
        .info-value {
            color: #6c757d;
        }
        .reason-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .reason-card:hover {
            transform: translateY(-5px);
        }
        .reason-card h5 {
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .reason-card p {
            color: #6c757d;
            line-height: 1.6;
        }
        .process-step {
            text-align: center;
            padding: 2rem 1rem;
        }
        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem auto;
        }
        .process-title {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        .business-area {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }
        .business-icon {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 1rem;
        }