 /* KT-Pro Style CSS */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600&family=Roboto:wght@400;500;600&display=swap');  .kt-pro-container {   font-family: 'Noto Sans TC', 'Roboto', sans-serif;   line-height: 1.6;   color: #1F2937;   max-width: 1200px;   margin: 0 auto;   padding: 0 20px; }  .kt-pro-hero {   background: linear-gradient(135deg, #ECFEFF 0%, #0891B2 100%);   padding: 60px 40px;   border-radius: 16px;   margin-bottom: 40px;   text-align: center;   position: relative;   overflow: hidden; }  .kt-pro-hero::before {   content: '';   position: absolute;   top: 0;   left: 0;   right: 0;   bottom: 0;   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');   opacity: 0.3; }  .kt-pro-hero h1 {   font-size: 2.5rem;   font-weight: 600;   color: white;   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);   margin-bottom: 20px;   position: relative;   z-index: 1; }  .kt-pro-hero p {   font-size: 1.2rem;   color: white;   text-shadow: 1px 1px 2px rgba(0,0,0,0.3);   position: relative;   z-index: 1; }  .kt-pro-section {   background: white;   border-radius: 12px;   padding: 40px;   margin-bottom: 30px;   box-shadow: 0 4px 6px rgba(0,0,0,0.05);   border: 2px solid #ECFEFF; }  .kt-pro-section:nth-child(even) {   border-color: #0891B2; }  .kt-pro-section h2 {   color: #0891B2;   font-size: 1.8rem;   font-weight: 600;   margin-bottom: 20px;   padding-bottom: 10px;   border-bottom: 3px solid #ECFEFF; }  .kt-pro-section h3 {   color: #0891B2;   font-size: 1.4rem;   font-weight: 500;   margin: 25px 0 15px 0; }  .kt-pro-stats {   display: grid;   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));   gap: 20px;   margin: 30px 0; }  .kt-pro-stat-card {   background: linear-gradient(135deg, #ECFEFF 0%, rgba(236, 254, 255, 0.3) 100%);   padding: 25px;   border-radius: 12px;   text-align: center;   border: 1px solid #0891B2; }  .kt-pro-stat-number {   font-size: 2.5rem;   font-weight: 600;   color: #0891B2;   display: block; }  .kt-pro-stat-label {   color: #1F2937;   font-weight: 500;   margin-top: 5px; }  .kt-pro-grid {   display: grid;   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));   gap: 25px;   margin: 30px 0; }  .kt-pro-card {   background: #F6F6F6;   padding: 25px;   border-radius: 12px;   border-left: 5px solid #0891B2;   transition: transform 0.3s ease, box-shadow 0.3s ease; }  .kt-pro-card:hover {   transform: translateY(-5px);   box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15); }  .kt-pro-card h4 {   color: #0891B2;   font-size: 1.2rem;   font-weight: 600;   margin-bottom: 15px;   display: flex;   align-items: center; }  .kt-pro-icon {   width: 24px;   height: 24px;   background: #0891B2;   border-radius: 50%;   display: inline-flex;   align-items: center;   justify-content: center;   margin-right: 10px;   color: white;   font-size: 12px; }  .kt-pro-list {   list-style: none;   padding: 0; }  .kt-pro-list li {   padding: 8px 0;   border-bottom: 1px solid #ECFEFF;   position: relative;   padding-left: 25px; }  .kt-pro-list li::before {   content: '✓';   position: absolute;   left: 0;   color: #0891B2;   font-weight: 600; }  .kt-pro-region {   background: white;   border: 2px solid #ECFEFF;   border-radius: 12px;   padding: 30px;   margin-bottom: 25px; }  .kt-pro-region:nth-child(odd) {   border-color: #0891B2; }  .kt-pro-region h4 {   color: #0891B2;   font-size: 1.5rem;   font-weight: 600;   margin-bottom: 20px;   padding: 15px 20px;   background: linear-gradient(135deg, #ECFEFF 0%, rgba(236, 254, 255, 0.3) 100%);   border-radius: 8px;   border-left: 5px solid #0891B2; }  .kt-pro-highlight {   background: linear-gradient(135deg, #ECFEFF 0%, rgba(236, 254, 255, 0.5) 100%);   padding: 20px;   border-radius: 8px;   border-left: 4px solid #0891B2;   margin: 20px 0; }  .kt-pro-cta {   background: white;   color: #0891B2;   padding: 12px 30px;   border: 2px solid #0891B2;   border-radius: 25px;   text-decoration: none;   font-weight: 600;   display: inline-block;   margin: 20px 10px 10px 0;   transition: all 0.3s ease; }  .kt-pro-cta:hover {   background: #0891B2;   color: white;   transform: translateY(-2px);   box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3); }  .kt-pro-divider {   height: 3px;   background: linear-gradient(90deg, #ECFEFF 0%, #0891B2 50%, #ECFEFF 100%);   border: none;   margin: 40px 0;   border-radius: 2px; }  @media (max-width: 768px) {   .kt-pro-hero h1 {     font-size: 2rem;   }      .kt-pro-section {     padding: 25px 20px;   }      .kt-pro-grid {     grid-template-columns: 1fr;   }      .kt-pro-stats {     grid-template-columns: 1fr;   } }  @media (max-width: 768px) {   div[style*="grid-template-columns"] {     grid-template-columns: 1fr !important;   }      div[style*="display: flex"] {     flex-direction: column !important;   }      div[style*="padding: 0 20px 20px 68px"] {     padding: 0 20px 20px 20px !important;   }      h1[style*="font-size: 2.5rem"] {     font-size: 2rem !important;   }      h4[style*="font-size: 1.05rem"] {     font-size: 0.95rem !important;   }      div[style*="gap: 15px"] {     gap: 10px !important;   }      div[style*="width: 28px"] {     width: 25px !important;     height: 25px !important;     font-size: 12px !important;   } }  /* 確保風琴效果順暢 */ .accordion-content {   transition: max-height 0.3s ease; }  /* 手機版按鈕調整 */ @media (max-width: 480px) {   div[style*="justify-content: center"] a {     width: 100% !important;     margin-bottom: 10px !important;   } } #sp-ks8a8s{width: 100%; max-width: 100%; padding: 10px;}#sp-vw3kvy{padding: 0px;}#sp-va665o{width: calc(100% + 0px);}#sp-bty2qr{margin: 0px;}#sp-pqqry340xf{font-family: 'Noto Sans', 'Microsoft JhengHei', sans-serif; color: #1F2937; line-height: 1.7;}#sp-fzn4rozjq2{background: linear-gradient(135deg, #ECFEFF 0%, #0891B2 100%); padding: 60px 0; text-align: center; border-radius: 12px; margin-bottom: 50px;}#sp-f5du8tl0a1{color: #1F2937; font-size: 2.5rem; font-weight: 600; margin: 0; text-shadow: 1px 1px 2px rgba(255,255,255,0.8);}#sp-tx53fm78gm{color: #0891B2; font-size: 1.2rem; margin: 15px 0 0 0; font-weight: 500;}#sp-bhop4j82b5{background: #F0F9FF; padding: 20px; border-radius: 8px; margin-bottom: 30px; text-align: center; border: 1px solid #BAE6FD;}#sp-oylrhji5kr{color: #0891B2; margin-bottom: 10px;}#sp-gpmil93q05{font-size: 20px;}#sp-mp174l6d26{color: #075985; margin: 0; font-weight: 500;}#sp-7tqog67n76{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden;}#sp-jm82f952v0{background: linear-gradient(90deg, #0891B2 0%, #ECFEFF 100%); padding: 25px; color: #1F2937;}#sp-a2rz44g4oj{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-y8fijvukim{margin-right: 12px; color: #0891B2; font-size: 1.3rem;}#sp-bd2vj5m2yc{border-bottom: 1px solid #E5E7EB;}#sp-ak1mjycyp5{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-labu5b46j4{display: flex; align-items: center;}#sp-79wfmtss0u{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-agelvfpw11{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon1{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office1{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-weuqcyk5n4{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-re5e7ctgmz{display: grid; grid-template-columns: 1fr; gap: 12px;}#sp-v3s8je09mq{color: #0891B2;}#sp-nwu4up1hr3{border-bottom: 1px solid #E5E7EB;}#sp-40ok9mzrot{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-7qfyverlg5{display: flex; align-items: center;}#sp-0fcolofwwc{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-47mbc0dyji{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon2{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office2{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-k22h9ris6g{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-qyekmggjsg{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-rrfrutbldz{color: #0891B2;}#sp-8hh7f1x109{color: #0891B2;}#sp-mqx3by3thp{color: #0891B2;}#sp-x3c5tetbzf{border-bottom: 1px solid #E5E7EB;}#sp-ajhgqjet8c{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-84fwbblirp{display: flex; align-items: center;}#sp-23384xt10k{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-w7i8zzxufu{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon3{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office3{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-pb7v1k2vjd{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-wntlgyu6cs{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-uuwtyg7l1w{color: #0891B2;}#sp-nv6yozln2c{color: #0891B2;}#sp-neyfa2lokr{color: #0891B2;}#sp-4dxymp3bad{color: #0891B2;}#sp-t31gwksl4t{color: #0891B2; text-decoration: underline;}#sp-11mh2ig0ul{border-bottom: 1px solid #E5E7EB;}#sp-3ob6aaio76{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-8fd7quqg8z{display: flex; align-items: center;}#sp-7ln3i5ete8{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-15jgk2p8c1{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon4{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office4{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-d9cf4dg3tn{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-x2u3ieu8yg{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-9gww7ttaa8{color: #0891B2;}#sp-qv4aa08ior{color: #0891B2;}#sp-hzw5fxc461{color: #0891B2;}#sp-5wqnc9ogh3{border-bottom: 1px solid #E5E7EB;}#sp-5o3cznwhch{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-cgmfkpfzzu{display: flex; align-items: center;}#sp-nr31gvxvw2{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-3e0s5xgub3{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon5{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office5{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-v3h11376tp{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-girk5ie4rz{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-iu38w82pz1{color: #0891B2;}#sp-e7jsczizfl{color: #0891B2;}#sp-r5mnxhs9le{color: #0891B2;}#sp-245bzq41ou{border-bottom: 1px solid #E5E7EB;}#sp-3cg7c269lv{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-9u2y2rk6vx{display: flex; align-items: center;}#sp-eoyz2iz5xk{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-uazyma1zgk{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon6{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office6{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-nwx8u0ojoa{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-rq3ostm8hx{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-6vue4ezqfh{color: #0891B2;}#sp-cl9x8pdycu{color: #0891B2;}#sp-uqu1xmi6r6{color: #0891B2;}#sp-nfpsa63tgb{color: #0891B2;}#sp-9wpiqn2wkz{color: #0891B2; text-decoration: underline;}#sp-v2j7y3d9gq{border-bottom: 1px solid #E5E7EB;}#sp-7layup6f1g{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-1sqbn4grn4{display: flex; align-items: center;}#sp-3cxdgywn2m{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-wlalbfp9mw{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon7{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office7{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ppgw8ihs4f{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-umyrkkz2js{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-mmej8zafxk{color: #0891B2;}#sp-5kcfnfu1hm{color: #0891B2;}#sp-y8mt3e9iyz{color: #0891B2;}#sp-8b07p6csuz{color: #0891B2;}#sp-yj7cgmpwuz{color: #0891B2; text-decoration: underline;}#sp-zmw57zvzms{border-bottom: 1px solid #E5E7EB;}#sp-4g299zkurq{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-jcg9nhnblr{display: flex; align-items: center;}#sp-mpdan6nre7{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-y2b5ey20f7{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon8{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office8{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-sjtldlv4av{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-d2bkrukdv8{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-6e2fhsr5go{color: #0891B2;}#sp-faudr2iqt9{color: #0891B2;}#sp-gej7ve8ix8{color: #0891B2;}#sp-y1tyl9stjv{color: #0891B2;}#sp-wm4ufiqr6u{color: #0891B2; text-decoration: underline;}#sp-xejut6vd7h{border-bottom: 1px solid #E5E7EB;}#sp-arg6nrt2d9{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-bs0wctupbd{display: flex; align-items: center;}#sp-mzf8bzflr0{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-u9zmg6ttnm{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon9{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office9{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-zqqqvwcdcj{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-b13tldjfwa{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-x2jcql71qx{color: #0891B2;}#sp-1i2f61l89p{color: #0891B2;}#sp-cpw3b6wy2g{color: #0891B2;}#sp-cjnwosmfa1{color: #0891B2;}#sp-29gzyst1as{color: #0891B2; text-decoration: underline;}#sp-bh8wj4o4gp{border-bottom: 1px solid #E5E7EB;}#sp-x7vajsitwq{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-4wczl7k24h{display: flex; align-items: center;}#sp-dg47gfwirm{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-sws4pv5j4f{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon10{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office10{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-patekey7ph{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-m450j13qy0{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-fc731680k2{color: #0891B2;}#sp-xlvgn3vsk5{color: #0891B2;}#sp-7gxv248wof{color: #0891B2;}#sp-o4nh17bv2d{color: #0891B2;}#sp-be9cak6pe5{color: #0891B2; text-decoration: underline;}#sp-71qamfyi91{border-bottom: 1px solid #E5E7EB;}#sp-xcovhgela0{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-ul0glwzfoq{display: flex; align-items: center;}#sp-yi5qgwgs2q{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-g8fwluzgv1{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon11{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office11{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-c1nlrdq7cu{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-74xlmwcfee{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-617ohmhju1{color: #0891B2;}#sp-035t69wmqi{color: #0891B2;}#sp-nay58kgedu{color: #0891B2;}#sp-r65x06s8lw{color: #0891B2;}#sp-xm2nfw3otf{color: #0891B2; text-decoration: underline;}#sp-lp4xf6rahz{border-bottom: 1px solid #E5E7EB;}#sp-kcfnv2lnr6{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-9fg3db3xgy{display: flex; align-items: center;}#sp-0sj9wpjrvd{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-hxkxpz3372{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon12{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office12{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-53pmade5fd{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-wzwgyirc7x{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-xurbehbani{color: #0891B2;}#sp-ssw3vwsla8{color: #0891B2;}#sp-dsx07a4liw{color: #0891B2;}#sp-5cggoo73k3{border-bottom: 1px solid #E5E7EB;}#sp-efx09e88dt{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-qlu2qmsvyd{display: flex; align-items: center;}#sp-7wr9pzuksa{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-o35mke4m7e{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon13{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office13{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-2ysubhekjb{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-3pla3isgz9{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-ki87kma5g7{color: #0891B2;}#sp-zukmh8dvy7{color: #0891B2;}#sp-lju4tbwdzi{color: #0891B2;}#sp-r8g84ne4bl{border-bottom: 1px solid #E5E7EB;}#sp-dz6xzpscfm{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-6xll8l4hv6{display: flex; align-items: center;}#sp-1xpnwocz5q{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-xr176gx80t{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon14{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office14{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-r340s15838{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-32seezlb5w{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-u3o09me52m{color: #0891B2;}#sp-944vkbqalp{color: #0891B2;}#sp-g014sgpvfc{color: #0891B2;}#sp-dlshnhrqtx{color: #0891B2;}#sp-4u1h2fkczn{color: #0891B2; text-decoration: underline;}#sp-t374l17atc{border-bottom: 1px solid #E5E7EB;}#sp-dbj6msfbyu{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-beyyoo4801{display: flex; align-items: center;}#sp-mdjdo8a3r3{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-rmy0nwd1b2{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon15{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office15{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-yki1zpkj23{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-08ufixkpup{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-nb9ha2qxam{color: #0891B2;}#sp-23j99y3mr0{color: #0891B2;}#sp-20szqkbuns{color: #0891B2;}#sp-8gnw1lu8qc{color: #0891B2;}#sp-gkbe68jjb7{color: #0891B2; text-decoration: underline;}#sp-qx3vo0g5sv{border-bottom: 1px solid #E5E7EB;}#sp-gftett5opt{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-bozu6pe7hr{display: flex; align-items: center;}#sp-jcfqlbd8w2{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-qhowbsxtah{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon16{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office16{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-554e28dhxa{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-2y5xv3p3rv{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-6g25bme2wa{color: #0891B2;}#sp-yz8bpz0ke1{color: #0891B2;}#sp-f1rm34z73f{color: #0891B2;}#sp-hghbhwfr75{color: #0891B2;}#sp-xjhx44jiex{color: #0891B2; text-decoration: underline;}#sp-kcrtvraig9{border-bottom: 1px solid #E5E7EB;}#sp-zl8bdkiu5q{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-d7rdsbplim{display: flex; align-items: center;}#sp-xgjf4t7eki{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-xtchfdw07j{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon17{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office17{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-hnoijsxtg2{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-r5nxc207q6{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-cewt9bg1dd{color: #0891B2;}#sp-q07lcup1sg{color: #0891B2;}#sp-zorbch7vu5{color: #0891B2;}#sp-orfp2q4yw0{border-bottom: 1px solid #E5E7EB;}#sp-785wyxshqh{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-dahblqabp8{display: flex; align-items: center;}#sp-4u2yyixj8o{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-a8jd11ylyn{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon18{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office18{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-yhpxo7k0kb{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-nkxp49dju2{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-i375x5ga7w{color: #0891B2;}#sp-1s42055q95{color: #0891B2;}#sp-tousvafxcr{color: #0891B2;}#sp-w4ukp8jzvy{color: #0891B2;}#sp-oj43fhqpg5{color: #0891B2; text-decoration: underline;}#sp-wix7bbo25z{border-bottom: 1px solid #E5E7EB;}#sp-nllmr7uaue{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-1i07pt3ec3{display: flex; align-items: center;}#sp-bsmsi45ffi{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-net9gmag1a{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon19{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office19{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-jq6jk144tz{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-so2kmk88ag{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-xst4e4vqcr{color: #0891B2;}#sp-mk4q64nsb5{color: #0891B2;}#sp-1k6g01rjev{color: #0891B2;}#sp-n32fv9ju86{color: #0891B2;}#sp-duvisqtvic{color: #0891B2; text-decoration: underline;}#sp-gu7aiklken{border-bottom: 1px solid #E5E7EB;}#sp-b7dzukrclw{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-3ue8zupvdn{display: flex; align-items: center;}#sp-z23nph7uam{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-6axa0jjwle{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon20{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office20{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-733urx1jyq{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-he7v6asaqh{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-nvnlje5wgh{color: #0891B2;}#sp-6hoosk4epu{color: #0891B2;}#sp-305eyhcr54{color: #0891B2;}#sp-38mt1b48qx{border-bottom: 1px solid #E5E7EB;}#sp-v61yo2ca8a{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-fr6j2b10rq{display: flex; align-items: center;}#sp-9xsj219yyg{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-lgjsnpzri1{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon21{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office21{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-6gnaaqx0ds{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-suzaiig9ah{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-gl8vzyaku2{color: #0891B2;}#sp-vnwltt6dsh{color: #0891B2;}#sp-qp4vftd51e{color: #0891B2;}#sp-4kveq02nu6{border-bottom: none;}#sp-e2h0ivbi7m{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-6814l6ka1r{display: flex; align-items: center;}#sp-j0cvm9q9tk{background: #0891B2; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-m8d0chqx83{color: #0891B2; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon22{color: #0891B2; transition: transform 0.3s ease; font-size: 16px;}#office22{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ue6e4k5onm{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-2fvafgihnw{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-fhlifuuaev{color: #0891B2;}#sp-0vnccxms2e{color: #0891B2;}#sp-omsw2bedm4{color: #0891B2;}#sp-fwvwz7k0ue{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden;}#sp-026f5j3oaa{background: linear-gradient(90deg, #059669 0%, #ECFDF5 100%); padding: 25px; color: #1F2937;}#sp-oslugi2gjx{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-rgicl5gpc1{margin-right: 12px; color: #059669; font-size: 1.3rem;}#sp-4wpsahwbrw{border-bottom: 1px solid #E5E7EB;}#sp-pc8zxi0lqw{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-et2816yvq2{display: flex; align-items: center;}#sp-qriau8jcv8{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-jmcim9li1e{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon23{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office23{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-9fk0kf2gu8{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-sf4w6nldbn{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-954tpc5274{color: #059669;}#sp-fikgiyqo8o{color: #059669;}#sp-rtlblceosv{color: #059669;}#sp-be4x6g3ns5{color: #059669;}#sp-586bpa6jnb{color: #059669; text-decoration: underline;}#sp-g3f2iyvszh{border-bottom: 1px solid #E5E7EB;}#sp-5jaq7uhzas{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-p437uat69e{display: flex; align-items: center;}#sp-6q0lsusbri{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-1il9he31aw{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon24{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office24{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-4b5xb8bn04{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-w2kk24m03d{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-i55y93uzcv{color: #059669;}#sp-hgibco09e5{color: #059669;}#sp-t3vzstx4bf{color: #059669;}#sp-hyjs2b8tax{color: #059669;}#sp-ohhjoe0ouz{color: #059669; text-decoration: underline;}#sp-y2lw4oco5y{border-bottom: 1px solid #E5E7EB;}#sp-ofx6fbszxt{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-r1rm2r2n2b{display: flex; align-items: center;}#sp-yvgfaepn2b{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-sv16nevps7{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon25{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office25{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-pnu0jqrhcs{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-wvellf3xc8{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-lktb2ipc3e{color: #059669;}#sp-m3zvrab8fd{color: #059669;}#sp-x9d3ulurh8{color: #059669;}#sp-vckekqfdey{color: #059669;}#sp-v990xrw7o4{color: #059669; text-decoration: underline;}#sp-da0zbizzaq{border-bottom: 1px solid #E5E7EB;}#sp-ihm67iy2qn{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-yavol0tvay{display: flex; align-items: center;}#sp-f9dzrtt1e2{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-04q1zj6qmd{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon26{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office26{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-rg2iu46uqa{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-zdlx1nr521{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-s2sdhd6zbh{color: #059669;}#sp-r0uerg4udj{color: #059669;}#sp-dchpcvb33g{color: #059669;}#sp-7aromiktw6{color: #059669;}#sp-8kdmz3ippv{color: #059669; text-decoration: underline;}#sp-i0gmr4aiqz{border-bottom: 1px solid #E5E7EB;}#sp-zny9ib6zzd{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-uajwte26h1{display: flex; align-items: center;}#sp-xq3i449giy{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-yqg9dldqlw{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon27{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office27{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-e0u0gbffmv{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-fbdndc6kr3{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-6fzr484d2b{color: #059669;}#sp-0kx9wc3zna{color: #059669;}#sp-opkxkzg6o5{color: #059669;}#sp-05qybkenn8{color: #059669;}#sp-n45tgzevqa{color: #059669; text-decoration: underline;}#sp-wtd5ax8hph{border-bottom: 1px solid #E5E7EB;}#sp-0jcz67uawu{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-mntwh3ouce{display: flex; align-items: center;}#sp-9mmkyxx3v7{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-enlwyig5il{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon28{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office28{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-f9nw3y6aj5{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-hqccxdpvgi{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-y3tiv9f9ee{color: #059669;}#sp-47ik63mlj7{color: #059669;}#sp-ow842hy2y7{color: #059669;}#sp-h7efaho3cb{color: #059669;}#sp-t3aqviawiy{color: #059669; text-decoration: underline;}#sp-pqimnbib7v{border-bottom: 1px solid #E5E7EB;}#sp-oj0s4yd5bw{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-7146dokh1b{display: flex; align-items: center;}#sp-52qujts8mn{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-b0ltdlhjcv{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon29{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office29{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ye3kvd6a97{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-dqyzvdnrth{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-4ta0y99w1b{color: #059669;}#sp-gdckk4f2td{color: #059669;}#sp-ljx5npjb4k{color: #059669;}#sp-wx0bnfvjn5{color: #059669;}#sp-27yz8g0rdf{color: #059669; text-decoration: underline;}#sp-p9a0gyf730{border-bottom: 1px solid #E5E7EB;}#sp-d7ul5wfo0j{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-yk9g3wyif9{display: flex; align-items: center;}#sp-r76b8jnfip{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-lrx0dwr3ic{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon30{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office30{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-3mh4v4362n{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-e59wl5tw18{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-mct5tu0brt{color: #059669;}#sp-7mg78eihu2{color: #059669;}#sp-48sa4ge9xl{color: #059669;}#sp-3wv3c07rmu{color: #059669;}#sp-8pemr6vx7r{color: #059669; text-decoration: underline;}#sp-alu01fctmt{border-bottom: 1px solid #E5E7EB;}#sp-j33tomu27j{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-aj6rssowzu{display: flex; align-items: center;}#sp-xoczikq946{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-o4x7ygvpd7{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon31{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office31{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-kc4hloksae{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-bin2gq2sxc{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-c8oqu8carg{color: #059669;}#sp-ethf0bqzpv{color: #059669;}#sp-aw50444xx8{color: #059669;}#sp-zyx8aq0xzk{color: #059669;}#sp-yg7fejnk2a{color: #059669; text-decoration: underline;}#sp-g6zx2axt1d{border-bottom: 1px solid #E5E7EB;}#sp-wltdytjn38{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-ecqf4gf23h{display: flex; align-items: center;}#sp-0hr2jl9itq{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-7p8443bhgc{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon32{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office32{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-0yuhv1raju{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-8x6xp9zslq{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-svdggzd2ml{color: #059669;}#sp-zi0feivguc{color: #059669;}#sp-bvpx6iaryw{color: #059669;}#sp-dzskqewxsf{color: #059669;}#sp-9d1fnmf7vg{color: #059669; text-decoration: underline;}#sp-w34u9rgxv6{border-bottom: 1px solid #E5E7EB;}#sp-kvxfhm7k1d{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-p6gb8v1uuw{display: flex; align-items: center;}#sp-ettrv5r8hg{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-v99givq5f3{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon33{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office33{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-t4mjek5wjz{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-em0k7cub36{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-sfjufic5ei{color: #059669;}#sp-jyc9ecphjo{color: #059669;}#sp-9kt5libu6z{color: #059669;}#sp-rfq1erhpnn{color: #059669;}#sp-gcgu6ecp35{color: #059669; text-decoration: underline;}#sp-q5unjwm81o{border-bottom: 1px solid #E5E7EB;}#sp-46zh3a14x4{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-2r9kneg78w{display: flex; align-items: center;}#sp-nic9613gbs{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-swkl52p9nv{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon34{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office34{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-2ddlfq131s{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-fa39wzqi9o{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-y1n0ysq1bh{color: #059669;}#sp-fkzi2kfn3z{color: #059669;}#sp-0v5hv8pd89{color: #059669;}#sp-4q4kbpvc4t{color: #059669; text-decoration: underline;}#sp-3yk4ffdkk9{border-bottom: 1px solid #E5E7EB;}#sp-ypczkzgesj{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-4zeqp7nb1j{display: flex; align-items: center;}#sp-xo4q7n2w7w{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-dm3m9peogl{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon35{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office35{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-t1j5nf81rp{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-aioqx7hct7{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-8q3wpyfqqa{color: #059669;}#sp-eebs9gk3bf{color: #059669;}#sp-y56fn7u8le{color: #059669;}#sp-zztrv8hgik{color: #059669;}#sp-gr1sxtwz03{color: #059669; text-decoration: underline;}#sp-dfndh7cct7{border-bottom: 1px solid #E5E7EB;}#sp-76gnj08px9{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-rkaleb0ud0{display: flex; align-items: center;}#sp-mmsprso7cj{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-o37568kcmx{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon36{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office36{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-xnkj8px4hq{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-sjozvcv4gs{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-h63ezl1520{color: #059669;}#sp-obx6r9br2f{color: #059669;}#sp-4hczjwx8y7{color: #059669;}#sp-xv4ia9wd0o{color: #059669;}#sp-1hc9cnglvo{color: #059669; text-decoration: underline;}#sp-2ktm9x3zkg{border-bottom: 1px solid #E5E7EB;}#sp-iuxu1czrho{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-ub5dtdsn6a{display: flex; align-items: center;}#sp-x1bc8crvz9{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-eb4st8ccgs{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon37{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office37{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-90s6bwd84o{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-uvfkk59hxl{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-aafq35vhou{color: #059669;}#sp-1w0d4h6qpt{color: #059669;}#sp-dk962iqqle{color: #059669;}#sp-p0knbebtn1{color: #059669;}#sp-h2bqifosmv{color: #059669; text-decoration: underline;}#sp-cottnt18ed{border-bottom: 1px solid #E5E7EB;}#sp-pjb011nod4{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-2q9ftbj8s7{display: flex; align-items: center;}#sp-717qqm4plw{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-x6vwkmaln8{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon38{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office38{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-z5k1k68aca{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-ccyefdilyt{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-nxps8ff9wn{color: #059669;}#sp-h90r3y21yo{color: #059669;}#sp-vgbky1k9kh{color: #059669;}#sp-a07tm66oau{color: #059669;}#sp-4qecp1eobv{color: #059669; text-decoration: underline;}#sp-rnwievz8ax{border-bottom: 1px solid #E5E7EB;}#sp-6lbqb79o94{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-lz9q4fz604{display: flex; align-items: center;}#sp-xmini6ffyz{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-r2mtukgn6t{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon39{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office39{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-lizwd1xfrn{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-24kxn8jtsu{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-7sgg96wjzc{color: #059669;}#sp-pl6clbjogs{color: #059669;}#sp-4g1o7228z6{color: #059669;}#sp-j6rf8rrawb{border-bottom: 1px solid #E5E7EB;}#sp-umf4d529ug{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-1g1kyooj6l{display: flex; align-items: center;}#sp-xjnnifizef{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-b0469cy0j4{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon40{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office40{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-x0jlx7wghu{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-esoqt38zg7{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-x9021xhr2s{color: #059669;}#sp-cx3jg4bqo1{color: #059669;}#sp-luuuc17ztg{color: #059669;}#sp-rh08w6cgvo{color: #059669;}#sp-zshj6h44uq{color: #059669; text-decoration: underline;}#sp-s1y0d35tmk{border-bottom: 1px solid #E5E7EB;}#sp-3xvuakokma{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-iwldey9sh5{display: flex; align-items: center;}#sp-g3hfrnpaur{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-rujc3qwi70{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon41{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office41{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-rui2n0hzib{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-t13aqsxfi5{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-bux1expta6{color: #059669;}#sp-ila1yl6vmx{color: #059669;}#sp-5bu8bzmcf6{color: #059669;}#sp-28nevajglu{color: #059669;}#sp-ilaotmt9no{color: #059669; text-decoration: underline;}#sp-mb8nht46sf{border-bottom: 1px solid #E5E7EB;}#sp-we4redgkb0{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-dqp04i3sqn{display: flex; align-items: center;}#sp-7y9m6rwb3u{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-eih4dd0c16{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon42{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office42{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-52ndc4plc9{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-x0yc6n2ulz{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-te253oodv0{color: #059669;}#sp-61vqa06rmu{color: #059669;}#sp-vm33z9ag3i{color: #059669;}#sp-g23u46miqc{color: #059669;}#sp-1j72jb7q27{color: #059669; text-decoration: underline;}#sp-xktq1x7umw{border-bottom: 1px solid #E5E7EB;}#sp-98hri3hw14{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-4vxdebbu1a{display: flex; align-items: center;}#sp-fzxvr9py2c{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-vkd06200b9{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon43{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office43{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-kzedi1bkxr{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-1p8xkx1qn1{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-rhb9f5i1lt{color: #059669;}#sp-gw1sovver1{color: #059669;}#sp-cffy7lb0z5{color: #059669;}#sp-xmxvy67l14{color: #059669;}#sp-5zvouie71o{color: #059669; text-decoration: underline;}#sp-hg5fu9n07o{border-bottom: none;}#sp-0a1emif7vn{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-g6u8i3sglk{display: flex; align-items: center;}#sp-0o96ndpgpd{background: #059669; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-lyfnajxi4s{color: #059669; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon44{color: #059669; transition: transform 0.3s ease; font-size: 16px;}#office44{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-519ynt6fco{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-f7c838e58i{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-vtvh3gyz8i{color: #059669;}#sp-2m8zrjanfe{color: #059669;}#sp-5h180btd5c{color: #059669;}#sp-mwj08tnxq1{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 30px; overflow: hidden;}#sp-4a5wghowsx{background: linear-gradient(90deg, #EA580C 0%, #FFF7ED 100%); padding: 25px; color: #1F2937;}#sp-p7lhv4r1be{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-kae6d3c5sg{margin-right: 12px; color: #EA580C; font-size: 1.3rem;}#sp-frqr7sbnvv{border-bottom: 1px solid #E5E7EB;}#sp-4bow6q6a9h{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-7ghkmgyu69{display: flex; align-items: center;}#sp-6hhkeqtgwu{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-icn3ao9l2q{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon45{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office45{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ewparuj8ah{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-mx4r3ocdqm{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-mcuof1vyb0{color: #EA580C;}#sp-zgq1icg174{color: #EA580C;}#sp-yxgk94p6e0{color: #EA580C;}#sp-j1opdtcrv7{color: #EA580C;}#sp-72aeefc1zn{color: #EA580C; text-decoration: underline;}#sp-d0r1fq6jvh{border-bottom: 1px solid #E5E7EB;}#sp-p1apyajj2x{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-az8p7h4bbs{display: flex; align-items: center;}#sp-47s198juf2{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-f000r6x6vq{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon46{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office46{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-j2z5ta76j6{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-3mkmm5uvzr{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-80feirtq5j{color: #EA580C;}#sp-9elkdqaybc{color: #EA580C;}#sp-ajdt032lca{color: #EA580C;}#sp-z88tzbnn56{border-bottom: 1px solid #E5E7EB;}#sp-m2pv6c5tnx{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-831xictiwq{display: flex; align-items: center;}#sp-caqjk99wdx{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-fep1lnr5yr{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon47{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office47{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-va41x4inma{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-88czggcq5k{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-wdv9xp5tby{color: #EA580C;}#sp-w3gyv0ctl7{color: #EA580C;}#sp-aljawgqs1l{color: #EA580C;}#sp-1omzafuc24{border-bottom: 1px solid #E5E7EB;}#sp-eqtb9z4000{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-mk3hlwsdu6{display: flex; align-items: center;}#sp-sp0jz042m4{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-vfg42803p5{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon48{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office48{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-wj5cxa7h9a{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-qtnmtbjxmv{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-bph2ao5j20{color: #EA580C;}#sp-ih84i33z94{color: #EA580C;}#sp-xcce9vax9o{color: #EA580C;}#sp-7quaqxcife{border-bottom: 1px solid #E5E7EB;}#sp-oouxndi54f{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-pn9qqqs5px{display: flex; align-items: center;}#sp-30v6vif113{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-agdwlpw5bx{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon49{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office49{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-l49mxbkhma{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-ii0hmy385e{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-lh25dm2vhr{color: #EA580C;}#sp-7y2dnig8xf{color: #EA580C;}#sp-9yb7xp9gdn{color: #EA580C;}#sp-d2uk316l0v{border-bottom: none;}#sp-h8r8y4qj5a{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-tb25s5t7uq{display: flex; align-items: center;}#sp-8eevw99efx{background: #EA580C; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-xxnxt53irw{color: #EA580C; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon50{color: #EA580C; transition: transform 0.3s ease; font-size: 16px;}#office50{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ksq9qtqxwf{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-g209rseu05{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-yampz9crg7{color: #EA580C;}#sp-5r5yowepma{color: #EA580C;}#sp-flzp9m2ekv{color: #EA580C;}#sp-e5i83wolfs{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 30px; overflow: hidden;}#sp-504sm3blf8{background: linear-gradient(90deg, #7C3AED 0%, #F3E8FF 100%); padding: 25px; color: #1F2937;}#sp-rpdelr017c{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-neqhb2q9ez{margin-right: 12px; color: #7C3AED; font-size: 1.3rem;}#sp-u051kbs4q1{border-bottom: 1px solid #E5E7EB;}#sp-rwgv9yvmpo{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-hz7rmm11a8{display: flex; align-items: center;}#sp-26e1785qwc{background: #7C3AED; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-k87julkaam{color: #7C3AED; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon51{color: #7C3AED; transition: transform 0.3s ease; font-size: 16px;}#office51{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-1tquuac5m6{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-r5i5uoa140{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-au8xc586y8{color: #7C3AED;}#sp-6xpnj03q5x{color: #7C3AED;}#sp-rlqjjkzq97{color: #7C3AED;}#sp-7hakurvfbh{border-bottom: 1px solid #E5E7EB;}#sp-pjh7irtu08{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-k0y6d7hcyg{display: flex; align-items: center;}#sp-tgfxwidq9e{background: #7C3AED; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-1d0p3zhd33{color: #7C3AED; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon52{color: #7C3AED; transition: transform 0.3s ease; font-size: 16px;}#office52{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-rx3tt3783g{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-yyjraqn78j{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-a273cp4qbs{color: #7C3AED;}#sp-87wbgf0yo8{color: #7C3AED;}#sp-folccs9g0c{color: #7C3AED;}#sp-jg6tb1my4e{color: #7C3AED;}#sp-to9hktn0h9{color: #7C3AED; text-decoration: underline;}#sp-1atz7p0cyz{border-bottom: 1px solid #E5E7EB;}#sp-rlxibjhne4{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-17txkezs6n{display: flex; align-items: center;}#sp-dyk4d7ajic{background: #7C3AED; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-4pxtnul0pq{color: #7C3AED; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon53{color: #7C3AED; transition: transform 0.3s ease; font-size: 16px;}#office53{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-zr8j6vis25{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-o7gqufdjv7{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-3r563dnufj{color: #7C3AED;}#sp-geab4e2lu1{color: #7C3AED;}#sp-cinvik2xu9{color: #7C3AED;}#sp-r5cmldnl8w{border-bottom: none;}#sp-mzoarisa2t{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-ubzw502lfz{display: flex; align-items: center;}#sp-66eogfoe2f{background: #7C3AED; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-jqn84hzti9{color: #7C3AED; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon54{color: #7C3AED; transition: transform 0.3s ease; font-size: 16px;}#office54{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-r3zhupxcri{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-6qkxtxx609{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-wpidi3emvv{color: #7C3AED;}#sp-367eq4lcxp{color: #7C3AED;}#sp-kyhevy2ol0{color: #7C3AED;}#sp-tf4qxfh0ur{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 30px; overflow: hidden;}#sp-xbz6k3vqqw{background: linear-gradient(90deg, #6B7280 0%, #F9FAFB 100%); padding: 25px; color: #1F2937;}#sp-8lba1o340l{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-2v5aeb2gl2{margin-right: 12px; color: #6B7280; font-size: 1.3rem;}#sp-tdj7pt4sdg{border-bottom: 1px solid #E5E7EB;}#sp-zih20p3il1{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-c1d4tq1ago{display: flex; align-items: center;}#sp-df0fq2h4cc{background: #6B7280; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-c0xtyoc0ru{color: #6B7280; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon55{color: #6B7280; transition: transform 0.3s ease; font-size: 16px;}#office55{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-xsc520i15v{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-6ifamkzu96{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-rv9fx9vk8r{color: #6B7280;}#sp-b19mx4jpie{color: #6B7280;}#sp-74tq42zqh2{color: #6B7280;}#sp-2to70ry3hp{color: #6B7280;}#sp-smied55rms{color: #6B7280; text-decoration: underline;}#sp-3zp0t8c0vv{border-bottom: none;}#sp-dj9dcw3i4q{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-ugiasw17wa{display: flex; align-items: center;}#sp-mjeqtmow2g{background: #6B7280; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-noqvc312h1{color: #6B7280; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon56{color: #6B7280; transition: transform 0.3s ease; font-size: 16px;}#office56{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-008s1covgj{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-ch06a5xags{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-i1tdlu98yk{color: #6B7280;}#sp-dhbiznf9r3{color: #6B7280;}#sp-dtabvh5093{color: #6B7280;}#sp-8ov6fendvl{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 30px; overflow: hidden;}#sp-s30zgr6h2i{background: linear-gradient(90deg, #DC2626 0%, #FEF2F2 100%); padding: 25px; color: #1F2937;}#sp-biguql0wzw{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-817od9mty4{margin-right: 12px; color: #DC2626; font-size: 1.3rem;}#sp-rvpc23vjoc{border-bottom: 1px solid #E5E7EB;}#sp-dxidjnh5st{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-kd99npx1at{display: flex; align-items: center;}#sp-kuon5p4jmq{background: #DC2626; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-olgcrbs1t2{color: #DC2626; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon57{color: #DC2626; transition: transform 0.3s ease; font-size: 16px;}#office57{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-gl9a91mix0{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-85vp13qzbn{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-midtei4kzl{color: #DC2626;}#sp-vzxx58cag3{color: #DC2626;}#sp-unbg3c5fxl{color: #DC2626;}#sp-ho6wh4y8h6{color: #DC2626;}#sp-ueke15zsxx{color: #DC2626; text-decoration: underline;}#sp-oij6gu5myj{border-bottom: 1px solid #E5E7EB;}#sp-4rqe8je1hz{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-1m9m2j8s3a{display: flex; align-items: center;}#sp-j7bo84dh5d{background: #DC2626; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-c9rcd9nhy8{color: #DC2626; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon58{color: #DC2626; transition: transform 0.3s ease; font-size: 16px;}#office58{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ftda500kso{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-n665pva2kp{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-e0fvyl92si{color: #DC2626;}#sp-618kb4tkh8{color: #DC2626;}#sp-tnhj75fkdv{color: #DC2626;}#sp-kh2x78bxkd{color: #DC2626;}#sp-dzgcnxp4p7{color: #DC2626; text-decoration: underline;}#sp-pjk6swf50k{border-bottom: none;}#sp-f9v0vryjvc{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-pyz489p3xu{display: flex; align-items: center;}#sp-hukc2w04jn{background: #DC2626; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-f4cgeesffh{color: #DC2626; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon59{color: #DC2626; transition: transform 0.3s ease; font-size: 16px;}#office59{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-b30dmq3fr3{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-1zy6flssqz{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-ebynz3dxmo{color: #DC2626;}#sp-xzm28vn6nt{color: #DC2626;}#sp-tde3kbgqkz{color: #DC2626;}#sp-z71awffa5i{color: #DC2626;}#sp-hqqyhydhh3{color: #DC2626; text-decoration: underline;}#sp-6gz4n42cge{background: #ffffff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 30px; overflow: hidden;}#sp-z2e8f4enht{background: linear-gradient(90deg, #F59E0B 0%, #FFFBEB 100%); padding: 25px; color: #1F2937;}#sp-1c41tv0s2j{margin: 0; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center;}#sp-oq5d38da7d{margin-right: 12px; color: #F59E0B; font-size: 1.3rem;}#sp-lxbw1h1m9p{border-bottom: 1px solid #E5E7EB;}#sp-nm5efvkx1s{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-vqja83679y{display: flex; align-items: center;}#sp-t6xtelownw{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-yc9tbzhmp0{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon60{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office60{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-omq1mz053t{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-iklhve5kcu{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-naxkqcr0o4{color: #F59E0B;}#sp-sdx2iklh4t{color: #F59E0B;}#sp-jw40xx5j0f{color: #F59E0B;}#sp-yf2br83u2r{color: #F59E0B;}#sp-ta32qm2oux{color: #F59E0B; text-decoration: underline;}#sp-o7sdskc99b{border-bottom: 1px solid #E5E7EB;}#sp-k87f7z8oof{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-d4viu3ugrr{display: flex; align-items: center;}#sp-8dm0dxipub{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-dguz1nk3pa{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon61{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office61{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-8ljlatv78b{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-ykl6mel20t{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-qs0y3lqzfs{color: #F59E0B;}#sp-i3l8g6vy1t{color: #F59E0B;}#sp-ny2054klny{color: #F59E0B;}#sp-pzebpbnmfn{color: #F59E0B;}#sp-mxaolso60v{color: #F59E0B; text-decoration: underline;}#sp-4r8i17m3cp{border-bottom: 1px solid #E5E7EB;}#sp-dzyx6bfciz{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-zzaaz2v0h1{display: flex; align-items: center;}#sp-scg8j2nnae{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-olfh1j6p6q{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon62{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office62{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ctpfy627uw{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-wgangvvrkn{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-4frn1a3o0r{color: #F59E0B;}#sp-0mgh3qi3sc{color: #F59E0B;}#sp-6iq873bbea{color: #F59E0B;}#sp-8fgeuwl1rk{border-bottom: 1px solid #E5E7EB;}#sp-ayx7m6j0ye{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-k3w2t1veat{display: flex; align-items: center;}#sp-68xdf7kdxk{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-1cp9tn8ffp{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon63{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office63{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-s1gbzy5plj{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-0toijv19y9{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-8tshsdd3da{color: #F59E0B;}#sp-uz8pt28rte{color: #F59E0B;}#sp-ng1eebxsgk{color: #F59E0B;}#sp-ge131w86f2{color: #F59E0B;}#sp-ltnuw2jebp{color: #F59E0B; text-decoration: underline;}#sp-6z4x75fr8m{border-bottom: 1px solid #E5E7EB;}#sp-fr7pu6uka2{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-s4xa2qrcp2{display: flex; align-items: center;}#sp-v51g0cy7rk{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-q63te4hi0o{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon64{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office64{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-c6aqjarf1d{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-ychlkbpw08{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-wovifj5ikh{color: #F59E0B;}#sp-sz1b3i4fdv{color: #F59E0B;}#sp-5588vqmgq5{color: #F59E0B;}#sp-63z6eym3ye{color: #F59E0B;}#sp-fbfrddjspp{color: #F59E0B; text-decoration: underline;}#sp-f45sunknx6{border-bottom: 1px solid #E5E7EB;}#sp-qcyvj099mx{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-vy1x5gbmxc{display: flex; align-items: center;}#sp-7nsshvp2si{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-npmemqw3e6{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon65{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office65{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-5xzch1at5t{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-aysci6itoh{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-gu0iic1j9z{color: #F59E0B;}#sp-cxtp9k4lzk{color: #F59E0B;}#sp-ap7rt6hmni{color: #F59E0B;}#sp-0r4scmiwz9{color: #F59E0B;}#sp-6t1731gct4{color: #F59E0B; text-decoration: underline;}#sp-09cx1rsux7{border-bottom: 1px solid #E5E7EB;}#sp-rde8cxehmg{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-jopdpx2na1{display: flex; align-items: center;}#sp-6adc87dig5{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-s1xxdidzaq{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon66{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office66{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-aq3uz6dots{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-xmobhrktok{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-ezjdb2i6tw{color: #F59E0B;}#sp-fvbt3kyfpl{color: #F59E0B;}#sp-ctqcuszxtp{color: #F59E0B;}#sp-i11znhl1no{color: #F59E0B;}#sp-whw48wdn7n{color: #F59E0B; text-decoration: underline;}#sp-gelluq2kb6{border-bottom: 1px solid #E5E7EB;}#sp-wkn280j60e{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-xfigv316it{display: flex; align-items: center;}#sp-b8jcqo0k2l{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-bw2131tgfu{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon67{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office67{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-2khyg7wpqh{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-0trsjvkv7u{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-h2xlxiy4hq{color: #F59E0B;}#sp-vq2l5d7nc6{color: #F59E0B;}#sp-ofeipq9mj5{color: #F59E0B;}#sp-om3yb7rx4h{color: #F59E0B;}#sp-r8jx69upxd{color: #F59E0B; text-decoration: underline;}#sp-u65wcxdlji{border-bottom: 1px solid #E5E7EB;}#sp-oq4r48mi3y{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-l63rkrxd2f{display: flex; align-items: center;}#sp-0wiwbs5tai{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-qplhnbfw7e{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon68{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office68{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-ri8aw8kn3m{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-emmgew6zl8{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-grbb7id0y1{color: #F59E0B;}#sp-p32kw3tojr{color: #F59E0B;}#sp-fojdb7odp1{color: #F59E0B;}#sp-b9maijzei9{border-bottom: 1px solid #E5E7EB;}#sp-lyglhopb6u{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-pef32xjqaf{display: flex; align-items: center;}#sp-33micuifvz{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-nd8qq7x20b{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon69{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office69{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-prpkfqgb05{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-28p5prxo2v{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-owfo2y001v{color: #F59E0B;}#sp-igwerf8yr3{color: #F59E0B;}#sp-d9x2n2k2ab{color: #F59E0B;}#sp-zr06lie6sb{border-bottom: 1px solid #E5E7EB;}#sp-211q7jmc71{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-qbosjl4idw{display: flex; align-items: center;}#sp-e3brefgy6q{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-jhwxs6pxth{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon70{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office70{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-yzpy4xtvgj{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-tetrw1zgz7{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-xpmudhsbb7{color: #F59E0B;}#sp-mf7sgktuq5{color: #F59E0B;}#sp-hir3pzf2rg{color: #F59E0B;}#sp-s2v6vw139u{border-bottom: 1px solid #E5E7EB;}#sp-rg9n3sqe8w{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-hs4kjdec4a{display: flex; align-items: center;}#sp-wbwucu84oi{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-7n8fcq3h98{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon71{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office71{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-i95paspa01{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-7esq5l5vje{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-dhmcy9kjxt{color: #F59E0B;}#sp-j697kaip7i{color: #F59E0B;}#sp-ix97sp28nu{color: #F59E0B;}#sp-ir6l5mgfhv{border-bottom: 1px solid #E5E7EB;}#sp-zihk8tyd0s{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-wo8b10kq7t{display: flex; align-items: center;}#sp-jkok4jt8ws{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-f4cg9fbhmj{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon72{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office72{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-0edyme2bii{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-cljhe2b98x{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-rsmbjjompb{color: #F59E0B;}#sp-lhz1n3ww3j{color: #F59E0B;}#sp-o1scjyg6c0{color: #F59E0B;}#sp-garfj0yuh0{border-bottom: 1px solid #E5E7EB;}#sp-dqb5vjkl84{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-p76a1fzgkg{display: flex; align-items: center;}#sp-2y3wdsorjm{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-6kqhyjzobf{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon73{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office73{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-l2yodrgj86{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-a3xo8rd2o3{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-w9dabn1d1u{color: #F59E0B;}#sp-m3663ucmky{color: #F59E0B;}#sp-v0pt5aqk0j{color: #F59E0B;}#sp-fm37kanyqz{border-bottom: 1px solid #E5E7EB;}#sp-j3tq8b9srr{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-3m8j9c5jcs{display: flex; align-items: center;}#sp-ftw36utjfn{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-z1cmenk6er{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon74{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office74{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-rlplkmffdt{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-3vgn0jsb2f{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-41csqlghbe{color: #F59E0B;}#sp-og30pd58rp{color: #F59E0B;}#sp-0ql62aa4t5{color: #F59E0B;}#sp-281pm9un70{border-bottom: 1px solid #E5E7EB;}#sp-mmaastyoco{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-5dk2vgd7r5{display: flex; align-items: center;}#sp-c1ie79mm3a{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-wopbx7dz6u{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon75{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office75{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-nm42f82rti{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-s8kyy0v5hv{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-tm7eyravwx{color: #F59E0B;}#sp-ygafmpx3mm{color: #F59E0B;}#sp-r4v1d0peix{color: #F59E0B;}#sp-rk7q72el7e{border-bottom: none;}#sp-f81bgxr9z7{padding: 18px 25px; cursor: pointer; background: #ffffff; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center;}#sp-m4w2knva70{display: flex; align-items: center;}#sp-dhofk0lr6b{background: #F59E0B; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 13px; font-weight: 600;}#sp-tiijaqbff1{color: #F59E0B; font-size: 1.05rem; font-weight: 600; margin: 0;}#icon76{color: #F59E0B; transition: transform 0.3s ease; font-size: 16px;}#office76{max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}#sp-63pnggn1xy{padding: 0 20px 20px 68px; background: #F8FAFC;}#sp-onw7bvqeyi{display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px;}#sp-oin06mq3a7{color: #F59E0B;}#sp-bbek8hanm0{color: #F59E0B;}#sp-2wfbmb50et{color: #F59E0B;}#sp-wvi0c1id9f{color: #F59E0B;}#sp-0un631b00z{color: #F59E0B; text-decoration: underline;}#sp-kt4bvhm7zg{text-align: center; margin: 40px 0;}