.elementor-2800 .elementor-element.elementor-element-575f12a{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-320px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2800 .elementor-element.elementor-element-f7fa291 img{width:100%;max-width:56%;height:400px;}.elementor-2800 .elementor-element.elementor-element-69fd8e2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2800 .elementor-element.elementor-element-7bdda3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2800 .elementor-element.elementor-element-f8d9322 .tf-title-section .title-section{text-align:center;}.elementor-2800 .elementor-element.elementor-element-f8d9322 .tf-title-section .title-section .sub-title{font-family:"Arimo", Sans-serif;font-size:16px;font-weight:400;line-height:26px;}.elementor-2800 .elementor-element.elementor-element-f8d9322 .tf-title-section .title-section .heading{font-family:"Arimo", Sans-serif;font-size:45px;font-weight:700;line-height:1.2222222222222223em;}.elementor-2800 .elementor-element.elementor-element-6382ef0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2800 .elementor-element.elementor-element-958190d{width:100%;max-width:100%;}@media(max-width:767px){.elementor-2800 .elementor-element.elementor-element-f7fa291 img{max-width:100%;height:212px;object-fit:fill;}}@media(min-width:768px){.elementor-2800 .elementor-element.elementor-element-575f12a{--width:100%;}}/* Start custom CSS for text-editor, class: .elementor-element-958190d */<style>
        .positions-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .positions-main-title {
            color: #2a2a2a;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            font-size: 2.5rem;
            animation: fadeIn 1s ease-out;
        }
        
        .positions-main-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: #3a86ff;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .position-category {
            color: #3a86ff;
            font-size: 24px;
            font-weight: bold;
            margin: 50px 0 20px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(58, 134, 255, 0.3);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .position-category:hover {
            transform: translateX(10px);
            color: #2a75e6;
        }
        
        .position-category::before {
            content: '▼';
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            color: #3a86ff;
            transition: transform 0.3s ease;
        }
        
        .position-category.collapsed::before {
            transform: translateY(-50%) rotate(-90deg);
        }
        
        .position-items-wrapper {
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.3s ease;
        }
        
        .position-item {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            transform-origin: top;
            animation: fadeInUp 0.5s ease-out;
            animation-fill-mode: both;
        }
        
        .position-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        }
        
        .position-title {
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 18px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .position-title .emoji {
            font-size: 24px;
        }
        
        .position-description {
            color: #555;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .position-apply {
            margin-top: 15px;
            display: flex;
            gap: 15px;
        }
        
        .position-apply a {
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            font-size: 14px;
            border-radius: 4px;
            background-color: #3a86ff;
            transition: all 0.3s ease;
            display: inline-block;
            font-weight: 500;
        }
        
        .position-apply a:hover {
            background-color: #2a75e6;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .position-item:nth-child(1) { animation-delay: 0.1s; }
        .position-item:nth-child(2) { animation-delay: 0.2s; }
        .position-item:nth-child(3) { animation-delay: 0.3s; }
    </style>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const categoryHeadings = document.querySelectorAll('.position-category');
            
            categoryHeadings.forEach(heading => {
                heading.addEventListener('click', function() {
                    const wrapper = this.nextElementSibling;
                    this.classList.toggle('collapsed');
                    
                    if (this.classList.contains('collapsed')) {
                        wrapper.style.maxHeight = '0';
                        wrapper.style.opacity = '0';
                        wrapper.style.marginBottom = '0';
                    } else {
                        wrapper.style.maxHeight = wrapper.scrollHeight + 'px';
                        wrapper.style.opacity = '1';
                        wrapper.style.marginBottom = '20px';
                    }
                });
                
                // Initialize all as expanded
                const wrapper = heading.nextElementSibling;
                wrapper.style.maxHeight = wrapper.scrollHeight + 'px';
                wrapper.style.opacity = '1';
            });
        });
    </script>/* End custom CSS */