/* Start custom CSS for html, class: .elementor-element-2288aab */body{
    font-family: Inter, sans-serif;
    background:#f8fafc;
    padding:40px;
}

.course-roadmap{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}
body{
    font-family: Inter, sans-serif;
    background:#f8fafc;
    padding:40px;
}

.course-roadmap{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}
.week-card{
    background:#ffffff;
    border:1px solid #e6edf5;
    border-radius:24px;
    padding:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
}

.week-card:hover{
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}
.week-left{
    display:flex;
    align-items:flex-start;
    gap:18px;
    flex:1;
}
.icon-box{
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid #e7edf5;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    flex-shrink:0;
}

.icon-box img{
    width:22px;
    height:22px;
}
.week-meta{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.week-badge{
    background:#edf4ff;
    color:#2563eb;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    padding:5px 10px;
    border-radius:6px;
}

.lesson-count{
    font-size:13px;
    color:#7b8794;
}
.week-content h3{
    margin:0 0 10px;
    font-size:30px;
    font-weight:700;
    color:#0f172a;
    line-height:1.3;
}
.week-content p{
    margin:0;
    max-width:800px;
    font-size:17px;
    line-height:1.7;
    color:#64748b;
}
.toggle-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #e6edf5;
    background:white;
    cursor:pointer;
    color:#64748b;
    transition:0.3s;
}

.toggle-btn:hover{
    background:#f8fafc;
}
@media (max-width:768px){

    .week-card{
        padding:20px;
    }

    .week-left{
        gap:14px;
    }

    .week-content h3{
        font-size:22px;
    }

    .week-content p{
        font-size:15px;
    }

    .toggle-btn{
        width:38px;
        height:38px;
    }
}/* End custom CSS */