 .learning-path-section {
            padding: 60px 20px;
            background: white;
        }

        .container {
            max-width:1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-badge {
            display: inline-block;
            background: #ad7f08;
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6b7280;
        }

        .level-accordion {
            background: #faf9fc;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid #e9d5ff;
            overflow: hidden;
            transition: all 0.3s;
        }

        .level-accordion:hover {
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
        }

        .level-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            user-select: none;
            background: #faf9fc;
            transition: background 0.2s;
        }

        .level-header:hover {
            background: #f5f3ff;
        }

        /* .level-header.active {
            background: #ad7f08;
        } */

        .level-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
        }

        .level-duration {
            font-size: 14px;
            color: #6b7280;
        }

        .level-meta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .modules-badge {
            background: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: #6b7280;
            font-weight: 500;
        }

        .accordion-icon {
            color: #6b7280;
            transition: transform 0.3s;
        }

        .level-header.active .accordion-icon {
            transform: rotate(180deg);
        }

        .level-content {
            display: none;
            background: white;
            border-top: 1px solid #e9d5ff;
        }

        .level-content.active {
            display: block;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            padding: 24px;
        }

        .module-card {
            background: #fafafa;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
        }

        .module-title {
            font-size: 15px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 14px;
        }

        .module-topics {
            list-style: none;
        }

        .module-topics li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .module-topics li:last-child {
            margin-bottom: 0;
        }

        .module-topics svg {
            flex-shrink: 0;
            margin-top: 2px;
            color: #10b981;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }

            .modules-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .level-header {
                padding: 16px 18px;
            }

            .level-info h3 {
                font-size: 16px;
            }
        }
        
        @media screen and (max-width:540px){
            .hero {padding:20px;}
            .container{width:100%; padding:0px 15px;max-width:100%;}
            .programs-grid{display:inherit !important;}
            .program-card{margin-bottom:25px;}
            .program-header{flex-wrap:wrap !important;}
            .program-icon{margin-bottom:8px;}
        }