<style>.course-accordion{width:100%;max-width:750px;margin:30px auto 0;font-family:'Segoe UI',Arial,sans-serif;border-radius:6px;box-shadow:0 4px 14px rgba(44,49,65,0.08);background:#fff;padding-bottom:18px}.course-headline{text-align:center;font-size:2em;font-weight:700;color:#21315b;margin:30px 0 16px 0;letter-spacing:1px}.course-item{border-bottom:1px solid #eee}.course-title{cursor:pointer;padding:18px 26px;background:#2c3141;color:#fff;font-size:1.18em;font-weight:600;user-select:none;border-radius:3px 3px 0 0;transition:background 0.2s;margin-bottom:0}.course-title:hover,.course-title.active{background:#38406c}.course-desc{display:none;padding:16px 26px;background:#f6f6fa;color:#222;font-size:1em;border-radius:0 0 3px 3px;margin-bottom:10px}</style><div class="course-accordion"><div class="course-headline">Our Trades</div><div class="course-item"><div class="course-title">Electrician</div><div class="course-desc">Learn electrical systems,wiring,power distribution,safety protocols,and troubleshooting used in residential,commercial,and industrial environments. Gain skills in motor control,panel installation,and renewable energy setups. </div></div><div class="course-item"><div class="course-title">COPA (Computer Operator and Programming Assistant)</div><div class="course-desc">Get trained in computer fundamentals,office automation,programming basics,IT support,and web development. Build skills in MS Office,Internet,database,coding,and troubleshooting. </div></div><div class="course-item"><div class="course-title">Sewing Technology</div><div class="course-desc">Master the art of tailoring,garment construction,fabric selection,pattern making,stitching techniques,and machine operation for the fashion and textile industry. </div></div><div class="course-item"><div class="course-title">Basic Cosmetology</div><div class="course-desc">Discover hair care,skin and beauty treatments,makeup artistry,spa therapies,and salon management. Learn safety and hygiene standards for professional beauty services. </div></div></div><script>document.querySelectorAll('.course-title').forEach((item)=>{item.addEventListener('click',function(){// Collapse all document.querySelectorAll('.course-desc').forEach((desc)=>desc.style.display='none');document.querySelectorAll('.course-title').forEach((title)=>title.classList.remove('active'));// Expand the clicked one this.classList.add('active');this.nextElementSibling.style.display='block'})});