.org-scroll-area {
                        width: 100%;
                        overflow-x: auto;
                        padding: 30px 0;
                        display: flex;
                    }

                    .org-chart {
                        display: inline-flex;
                        flex-direction: column;
                        align-items: stretch;
                        width: auto;
                        min-width: 100%;
                        margin: 0;
                    }

                    .org-children-container {
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                        position: relative;
                        width: 100%;
                    }
                    .org-col {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        position: relative;
                        padding-top: 20px; 
                        flex: 1; 
                        padding-left: 5px;
                        padding-right: 5px;
                    }
                    .org-col::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 50%;
                        width: 2px;
                        height: 20px;
                        background-color: #006272;
                        transform: translateX(-50%);
                        z-index: 1;
                    }
                    .org-col::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background-color: #006272;
                        z-index: 0;
                    }
                    .org-col:first-child::after { left: 50%; width: 50%; }
                    .org-col:last-child::after { left: 0; width: 50%; }
                    .org-col:first-child:last-child::after { display: none; }

                    .org-node-wrapper {
                        position: relative;
                        padding-bottom: 20px; 
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        width: 100%;
                    }
                    .org-parent-connector {
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        width: 2px;
                        height: 20px;
                        background-color: #006272;
                        transform: translateX(-50%);
                        z-index: 1;
                    }

                    .org-sub-node-wrapper {
                        position: relative;
                        padding-top: 20px;
                        display: flex;
                        justify-content: center;
                        width: 100%;
                    }
                    .org-sub-node-wrapper::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 50%;
                        width: 2px;
                        height: 20px;
                        background-color: #cbd5e1;
                        transform: translateX(-50%);
                    }
                    .org-sub-node {
                        background: #f8fafc;
                        border: 2px solid #cbd5e1;
                        border-radius: 12px;
                        padding: 10px;
                        width: 95%;
                        min-width: 130px;
                        max-width: 200px;
                        text-align: center;
                        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
                    }

                    .org-node {
                        background: #fff;
                        border: 2px solid #006272;
                        border-radius: 12px;
                        padding: 10px;
                        width: 95%;
                        min-width: 130px;
                        max-width: 220px;
                        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
                        position: relative;
                        z-index: 2;
                        text-align: center;
                    }
                    .org-node:hover { transform: none; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
                    
                    .org-node.main { background: #006272; border-color: #006272; }
                    .org-node.main h6, .org-node.main p, .org-node.main .tel, .org-node.main .tel i { color: white !important; }
                    .org-node.highlight { background: #e0f2fe; border-color: #0284c7; }
                    .org-node.highlight h6 { color: #0284c7; }
                    
                    .org-node h6 { margin: 0; color: #006272; font-weight: 700; font-size: 0.9rem; }
                    .org-node p { margin: 4px 0 0; font-size: 0.7rem; color: #64748b; line-height: 1.2; }
                    .org-node .tel { margin-top: 5px; font-size: 0.75rem; font-weight: 600; color: #E35205; }
                    .org-sub-node h6 { font-size: 0.8rem; color: #475569; font-weight: 700; margin:0; line-height: 1.2; }
                    .org-sub-node p { margin: 4px 0 0; font-size: 0.7rem; color: #64748b; line-height: 1.1; }
                    .org-sub-node .tel { margin-top: 5px; font-size: 0.75rem; font-weight: 600; color: #E35205; }