/* course page styles - Extracted from inline style */

.course-process {
    margin-bottom: 80px;
}
.process-timeline {
    position: relative;
    padding-left: 50px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}
.process-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.process-item:last-child {
    margin-bottom: 0;
}
.process-number {
    position: absolute;
    left: -50px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}
.process-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    flex: 1;
    margin-left: 30px;
}
.process-content h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}
.process-content p {
    margin: 0;
    color: var(--text-light);
}
.course-types {
    margin-bottom: 40px;
}
.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.course-img {
    height: 200px;
    overflow: hidden;
}
.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.course-card:hover .course-img img {
    transform: scale(1.1);
}
.course-content {
    padding: 25px;
}
.course-content h4 {
    margin-bottom: 10px;
}
.course-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}