.ifag-curriculum {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 0;
}

.ifag-curr-col {
    flex: 1;
    min-width: 250px;
    padding: 0;
    position: relative;
    margin-bottom: 40px;
}

.ifag-curr-col:not(:last-child) {
    padding-right: 30px; /* Small gap for the separator */
}

.ifag-curr-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 15px; /* Center in the gap */
    top: 60px; /* Start below the title yellow line */
    bottom: 0;
    width: 1px;
    background-color: #e1e4e8; /* Vertical separator */
}

.ifag-curr-title {
    font-size: 22px;
    font-weight: 700;
    color: #4A5AAB; /* Darkish Blue from screenshot */
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #FFD700; /* Yellow line after title */
}

.ifag-curr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ifag-curr-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ifag-curr-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px; /* Reduced from 12px */
    font-size: 15px;
    line-height: 1.3;
    color: #333333;
    font-weight: 500;
}

.ifag-curr-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ifag-curr-col {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .ifag-curr-col {
        flex: 1 1 100%;
        padding: 0;
    }
    .ifag-curr-col:not(:last-child)::after {
        display: none;
    }
    .ifag-curriculum {
        border-top: none;
    }
    .ifag-curr-col {
        border-top: 2px solid #FFD700;
        padding-top: 20px;
    }
}
