
        /* ==========================================================================
   본커넥트 스튜디오 - PC 가로 고정 CSS
   ========================================================================== */

        /* 기본 리셋 및 폰트 설정 */
        * {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff;
            line-height: 1.6;
            color: #333;
        }

        /* ==========================================================================
   레이아웃 & 섹션
   ========================================================================== */

        .section-container {
            padding: 60px 5%;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-container.bg-gray {
            background-color: #fafafa;
            margin: 0;
            max-width: none;
        }

        .section-container.bg-gray>* {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        /* 헤더 로고 영역 */
        .logo-pd {
            padding: 25px 0;
            background-color: #ffffff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            max-width: 180px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* ==========================================================================
   타이포그래피
   ========================================================================== */

        .main-title {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.3;
            text-align: center;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            letter-spacing: -0.02em;
        }

        .main-title span {
            display: block;
        }

        .section-title {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 700;
            line-height: 1.3;
            text-align: center;
            color: #222;
            margin-bottom: 15px;
        }

        .sub-title {
            font-size: clamp(1.3rem, 3.5vw, 1.8rem);
            font-weight: 600;
            line-height: 1.3;
            text-align: center;
            color: #222;
            margin-bottom: 15px;
        }

        .content {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            font-weight: 400;
            line-height: 1.8;
            text-align: center;
            color: #444;
        }

        .content-light {
            font-size: clamp(0.85rem, 2.2vw, 0.95rem);
            font-weight: 400;
            line-height: 1.7;
            text-align: left;
            color: #666;
        }

        .content-point {
            font-size: clamp(0.9rem, 2.2vw, 1rem);
            font-weight: 700;
            line-height: 1.4;
            text-align: center;
            color: #c41e3a;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .highlight {
            color: #c41e3a;
            font-weight: 700;
        }

        .nanum {
            font-family: 'Nanum Myeongjo', serif;
        }

        /* ==========================================================================
   영상 배경 섹션
   ========================================================================== */

        .video-section {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .video-section iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 1;
        }

        .video-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 2;
        }

        .video-section .main-title {
            position: relative;
            z-index: 3;
        }

        /* ==========================================================================
   가격표 테이블
   ========================================================================== */

        .price-table {
            width: 100%;
            max-width: 600px;
            margin: 30px auto;
            border-collapse: collapse;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .price-table td {
            padding: 20px 25px;
            border-bottom: 1px solid #f0f0f0;
            font-size: clamp(0.95rem, 2.5vw, 1.05rem);
            font-weight: 500;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .price-table tr:nth-child(even) td {
            background-color: #f9f9f9;
        }

        .price-table tr:hover td {
            background-color: #f5f5f5;
            transition: background-color 0.2s ease;
        }

        .price-table td:first-child {
            text-align: left;
            color: #333;
        }

        .price-table td:last-child {
            text-align: right;
            color: #c41e3a;
            font-weight: 700;
        }

        .price-table col.col-service {
            width: 65%;
        }

        .price-table col.col-price {
            width: 35%;
        }

        /* ==========================================================================
   CTA 버튼
   ========================================================================== */

        .cta-box {
            display: inline-block;
            width: 100%;
            max-width: 320px;
            padding: 18px 30px;
            margin: 0 auto;
            border: 2px solid #c41e3a;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            background: #ffffff;
            color: #c41e3a;
            font-weight: 600;
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta-box:hover {
            background: #c41e3a;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
        }

        .cta-box:hover::before {
            left: 100%;
        }

        .cta-box:active {
            transform: translateY(0);
        }

        /* ==========================================================================
   FAQ 섹션
   ========================================================================== */

        .faq-item {
            background: #ffffff;
            margin-bottom: 15px;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-item p:first-child {
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
            font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        }

        .faq-item p:last-child {
            color: #555;
            line-height: 1.7;
            font-size: clamp(0.9rem, 2.3vw, 1rem);
        }

        .faq-item strong {
            color: #c41e3a;
        }

        /* ==========================================================================
   유틸리티 클래스
   ========================================================================== */

        .mb-40 {
            margin-bottom: 40px;
        }

        .mb-23 {
            margin-bottom: 23px;
        }

        .mb-10 {
            margin-bottom: 10px;
        }

        .mt-23 {
            margin-top: 23px;
        }

        .mt-10 {
            margin-top: 10px;
        }

        .text-center {
            text-align: center;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ==========================================================================
   반응형 디자인
   ========================================================================== */

        @media (max-width: 768px) {
            .section-container {
                padding: 40px 6%;
                max-width: none;
            }

            .section-container.bg-gray>* {
                max-width: none;
            }

            .video-section {
                height: 60vh;
                min-height: 400px;
            }

            .price-table {
                max-width: none;
            }

            .price-table td {
                padding: 15px 18px;
            }

            .faq-item {
                padding: 20px;
            }

            .logo {
                max-width: 140px;
            }

            .cta-box {
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .section-container {
                padding: 30px 4%;
            }

            .logo-pd {
                padding: 20px 0;
            }

            .video-section {
                height: 50vh;
                min-height: 350px;
            }

            .price-table td {
                padding: 12px 15px;
            }

            .faq-item {
                padding: 18px;
                margin-bottom: 12px;
            }

            .cta-box {
                padding: 16px 25px;
            }
        }