body, html {
            margin: 0;
            padding: 0;
            overflow: auto;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
        }
        /* 회사 소개 페이지 전용 스타일 */
        .company-intro-page {
               padding-top: 100px; /* 헤더 공간 확보 */
                padding-bottom: 200px; /* 하단 컴포넌트 공간 확보 */
                background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
                min-height: 100vh;
                /* 스크롤 관련 속성 추가 */
                overflow-y: auto;
                overflow-x: hidden;
                position: relative;
                z-index: 1;
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 히어로 섹션 */
        .company-hero {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            margin: -100px -20px 60px -20px;
            position: relative;
            overflow: hidden;
        }

        .company-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .company-hero__content {
            position: relative;
            z-index: 2;
        }

        .company-hero__title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .company-hero__subtitle {
            font-size: clamp(0.8rem, 2.5vw, 1.8rem);
            font-weight: 400;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .company-hero__description {
            font-size: clamp(0.8rem, 2vw, 1.3rem);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.8;
            padding: 0 24px;
        }

        /* 섹션 공통 스타일 */
        .intro-section {
            margin-bottom: 80px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .intro-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .section-content {
            padding: 40px;
        }

        /* 회사 개요 스타일 */
        .company-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .overview-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #3b82f6;
            transition: all 0.3s ease;
        }

        .overview-card:hover {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            transform: translateX(5px);
        }

        .overview-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .overview-label {
            font-weight: 700;
            color: #1f2937;
            min-width: 120px;
            margin-right: 15px;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        }

        .overview-value {
            color: #374151;
            line-height: 1.5;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        }

        /* 서비스 카드 스타일 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            padding-left: 15px;
            position: relative;
        }

        .service-card h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #3b82f6;
            border-radius: 2px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            padding: 12px 0;
            padding-left: 25px;
            position: relative;
            color: #374151;
            line-height: 1.6;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            border-bottom: 1px solid #f1f5f9;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #22c55e;
            font-weight: bold;
        }

        /* 특장점 스타일 */
        .feature-highlight {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
            border-left: 5px solid #3b82f6;
        }

        .feature-highlight h4 {
            color: #1d4ed8;
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* 적용 사례 스타일 */
        .case-studies {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .case-study {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: clamp(0.8rem, 1.3vw, 0.95rem);
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
        }

        /* 향후 플랜 스타일 */
        .future-plans {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            color: white;
        }

        .future-plans .section-content {
            background: transparent;
        }

        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .plan-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .plan-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .plan-item h4 {
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: #fbbf24;
        }

        .plan-item p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        /* 애니메이션 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .intro-container {
                padding: 0 15px;
            }

            .section-content {
                padding: 25px;
            }

            .company-overview {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .overview-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .overview-label {
                min-width: auto;
                margin-bottom: 5px;
            }

            .plan-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .company-intro-page {
                padding-top: 80px;
            }

            .company-hero {
                margin: -80px -15px 40px -15px;
                padding: 40px 0;
            }

            .intro-section {
                margin-bottom: 40px;
            }

            .section-header {
                padding: 20px;
            }

            .section-content {
                padding: 20px;
            }
        }