
        .org-chart-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            font-family: Arial, sans-serif;
        }

        .org-level {
            text-align: center;
            margin-bottom: 30px;
        }

        .org-box {
            display: inline-block;
            background-color: #1abc9c;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .org-description {
            color: #666;
            font-size: 14px;
            margin-left: 20px;
        }

        .org-connector-vertical {
            width: 2px;
            height: 30px;
            background-color: #ccc;
            margin: 0 auto;
        }

        .org-connector-horizontal {
            position: relative;
            margin-bottom: 30px;
        }

        .org-horizontal-line {
            width: 80%;
            height: 2px;
            background-color: #ccc;
            margin: 0 auto;
            position: relative;
        }

        .org-vertical-line {
            position: absolute;
            top: 0;
            width: 2px;
            height: 30px;
            background-color: #ccc;
        }

        .org-vertical-line.pos-0 {
            left: 0%;
        }

        .org-vertical-line.pos-25 {
            left: 25%;
        }

        .org-vertical-line.pos-50 {
            left: 50%;
        }

        .org-vertical-line.pos-75 {
            left: 75%;
        }

        .org-vertical-line.pos-100 {
            left: 100%;
            transform: translateX(-2px);
        }

        .org-departments {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 15px;
        }

        .org-department {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }

        .org-department-box {
            background-color: #1abc9c;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .org-bottom-description {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }

        /* ¹ÝÀÀÇü µðÀÚÀÎ */
        @media (max-width: 768px) {
            .org-chart-container {
                padding: 20px;
            }

            .org-box {
                padding: 10px 20px;
                font-size: 14px;
            }

            .org-description {
                font-size: 12px;
                margin-left: 10px;
            }

            .org-departments {
                flex-direction: column;
                align-items: center;
            }

            .org-department {
                min-width: 200px;
                margin-bottom: 10px;
            }

            .org-horizontal-line {
                width: 90%;
            }
        }

        @media (max-width: 480px) {
            .org-chart-container {
                padding: 15px;
            }

            .org-box {
                padding: 8px 15px;
                font-size: 12px;
            }

            .org-description {
                font-size: 11px;
            }

            .org-department-box {
                padding: 8px 12px;
                font-size: 12px;
            }
        }